org.codelibs.fess.crawler.db.allcommon.ImplementedCommonColumnAutoSetupper Maven / Gradle / Ivy
/*
* Copyright 2012-2016 CodeLibs Project and the Others.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package org.codelibs.fess.crawler.db.allcommon;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.dbflute.Entity;
import org.dbflute.hook.CommonColumnAutoSetupper;
/**
* The basic implementation of the auto set-upper of common column.
* @author DBFlute(AutoGenerator)
*/
public class ImplementedCommonColumnAutoSetupper implements CommonColumnAutoSetupper {
// =====================================================================================
// Definition
// ==========
/** The logger instance for this class. (NotNull) */
private static final Logger _log = LoggerFactory.getLogger(ImplementedCommonColumnAutoSetupper.class);
// =====================================================================================
// Set up
// ======
/** {@inheritDoc} */
public void handleCommonColumnOfInsertIfNeeds(Entity targetEntity) {
}
/** {@inheritDoc} */
public void handleCommonColumnOfUpdateIfNeeds(Entity targetEntity) {
}
// =====================================================================================
// Logging
// =======
protected boolean isInternalDebugEnabled() {
return DBFluteConfig.getInstance().isInternalDebug() && _log.isDebugEnabled();
}
protected void logSettingUp(EntityDefinedCommonColumn entity, String keyword) {
_log.debug("...Setting up column columns of " + entity.asTableDbName() + " before " + keyword);
}
}