org.codelibs.fess.es.config.bsentity.BsBoostDocumentRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fess Show documentation
Show all versions of fess Show documentation
Fess is Full tExt Search System.
/*
* Copyright 2012-2020 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.es.config.bsentity;
import java.time.LocalDateTime;
import java.util.HashMap;
import java.util.Map;
import org.codelibs.fess.es.config.allcommon.EsAbstractEntity;
import org.codelibs.fess.es.config.bsentity.dbmeta.BoostDocumentRuleDbm;
/**
* ${table.comment}
* @author ESFlute (using FreeGen)
*/
public class BsBoostDocumentRule extends EsAbstractEntity {
// ===================================================================================
// Definition
// ==========
private static final long serialVersionUID = 1L;
protected static final Class> suppressUnusedImportLocalDateTime = LocalDateTime.class;
// ===================================================================================
// Attribute
// =========
/** boostExpr */
protected String boostExpr;
/** createdBy */
protected String createdBy;
/** createdTime */
protected Long createdTime;
/** sortOrder */
protected Integer sortOrder;
/** updatedBy */
protected String updatedBy;
/** updatedTime */
protected Long updatedTime;
/** urlExpr */
protected String urlExpr;
// [Referrers] *comment only
// ===================================================================================
// DB Meta
// =======
@Override
public BoostDocumentRuleDbm asDBMeta() {
return BoostDocumentRuleDbm.getInstance();
}
@Override
public String asTableDbName() {
return "boost_document_rule";
}
// ===================================================================================
// Source
// ======
@Override
public Map toSource() {
Map sourceMap = new HashMap<>();
if (boostExpr != null) {
addFieldToSource(sourceMap, "boostExpr", boostExpr);
}
if (createdBy != null) {
addFieldToSource(sourceMap, "createdBy", createdBy);
}
if (createdTime != null) {
addFieldToSource(sourceMap, "createdTime", createdTime);
}
if (sortOrder != null) {
addFieldToSource(sourceMap, "sortOrder", sortOrder);
}
if (updatedBy != null) {
addFieldToSource(sourceMap, "updatedBy", updatedBy);
}
if (updatedTime != null) {
addFieldToSource(sourceMap, "updatedTime", updatedTime);
}
if (urlExpr != null) {
addFieldToSource(sourceMap, "urlExpr", urlExpr);
}
return sourceMap;
}
protected void addFieldToSource(Map sourceMap, String field, Object value) {
sourceMap.put(field, value);
}
// ===================================================================================
// Basic Override
// ==============
@Override
protected String doBuildColumnString(String dm) {
StringBuilder sb = new StringBuilder();
sb.append(dm).append(boostExpr);
sb.append(dm).append(createdBy);
sb.append(dm).append(createdTime);
sb.append(dm).append(sortOrder);
sb.append(dm).append(updatedBy);
sb.append(dm).append(updatedTime);
sb.append(dm).append(urlExpr);
if (sb.length() > dm.length()) {
sb.delete(0, dm.length());
}
sb.insert(0, "{").append("}");
return sb.toString();
}
// ===================================================================================
// Accessor
// ========
public String getBoostExpr() {
checkSpecifiedProperty("boostExpr");
return convertEmptyToNull(boostExpr);
}
public void setBoostExpr(String value) {
registerModifiedProperty("boostExpr");
this.boostExpr = value;
}
public String getCreatedBy() {
checkSpecifiedProperty("createdBy");
return convertEmptyToNull(createdBy);
}
public void setCreatedBy(String value) {
registerModifiedProperty("createdBy");
this.createdBy = value;
}
public Long getCreatedTime() {
checkSpecifiedProperty("createdTime");
return createdTime;
}
public void setCreatedTime(Long value) {
registerModifiedProperty("createdTime");
this.createdTime = value;
}
public Integer getSortOrder() {
checkSpecifiedProperty("sortOrder");
return sortOrder;
}
public void setSortOrder(Integer value) {
registerModifiedProperty("sortOrder");
this.sortOrder = value;
}
public String getUpdatedBy() {
checkSpecifiedProperty("updatedBy");
return convertEmptyToNull(updatedBy);
}
public void setUpdatedBy(String value) {
registerModifiedProperty("updatedBy");
this.updatedBy = value;
}
public Long getUpdatedTime() {
checkSpecifiedProperty("updatedTime");
return updatedTime;
}
public void setUpdatedTime(Long value) {
registerModifiedProperty("updatedTime");
this.updatedTime = value;
}
public String getUrlExpr() {
checkSpecifiedProperty("urlExpr");
return convertEmptyToNull(urlExpr);
}
public void setUrlExpr(String value) {
registerModifiedProperty("urlExpr");
this.urlExpr = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy