org.balisunrise.tests.hibernate.Interceptador.java Source code

Java tutorial

Introduction

Here is the source code for org.balisunrise.tests.hibernate.Interceptador.java

Source

/*
 * Copyright (C) 2015 Glauco Knihs. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Please contact Glauco Knihs, Rua 10 de Junho, N469, Centro, 
 * Guabiruba-SC, CEP 88360-000, BRAZIL, eglauko@hotmail.com, 
 * if you need additional information or have any questions.
 */

package org.balisunrise.tests.hibernate;

import org.hibernate.EmptyInterceptor;

/**
 * Classe Interceptador.
 *
 * @author Glauco Knihs
 * @version 1.0
 * @since 1.0
 */
public class Interceptador extends EmptyInterceptor {

    @Override
    public String onPrepareStatement(String sql) {
        sql = sql.replace("like", "~~*");
        //System.out.println(sql);
        return sql;
    }

}