org.codelibs.fess.es.config.bsentity.BsDuplicateHost 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.DuplicateHostDbm;
/**
* ${table.comment}
* @author ESFlute (using FreeGen)
*/
public class BsDuplicateHost extends EsAbstractEntity {
// ===================================================================================
// Definition
// ==========
private static final long serialVersionUID = 1L;
protected static final Class> suppressUnusedImportLocalDateTime = LocalDateTime.class;
// ===================================================================================
// Attribute
// =========
/** createdBy */
protected String createdBy;
/** createdTime */
protected Long createdTime;
/** duplicateHostName */
protected String duplicateHostName;
/** regularName */
protected String regularName;
/** sortOrder */
protected Integer sortOrder;
/** updatedBy */
protected String updatedBy;
/** updatedTime */
protected Long updatedTime;
// [Referrers] *comment only
// ===================================================================================
// DB Meta
// =======
@Override
public DuplicateHostDbm asDBMeta() {
return DuplicateHostDbm.getInstance();
}
@Override
public String asTableDbName() {
return "duplicate_host";
}
// ===================================================================================
// Source
// ======
@Override
public Map toSource() {
Map sourceMap = new HashMap<>();
if (createdBy != null) {
addFieldToSource(sourceMap, "createdBy", createdBy);
}
if (createdTime != null) {
addFieldToSource(sourceMap, "createdTime", createdTime);
}
if (duplicateHostName != null) {
addFieldToSource(sourceMap, "duplicateHostName", duplicateHostName);
}
if (regularName != null) {
addFieldToSource(sourceMap, "regularName", regularName);
}
if (sortOrder != null) {
addFieldToSource(sourceMap, "sortOrder", sortOrder);
}
if (updatedBy != null) {
addFieldToSource(sourceMap, "updatedBy", updatedBy);
}
if (updatedTime != null) {
addFieldToSource(sourceMap, "updatedTime", updatedTime);
}
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(createdBy);
sb.append(dm).append(createdTime);
sb.append(dm).append(duplicateHostName);
sb.append(dm).append(regularName);
sb.append(dm).append(sortOrder);
sb.append(dm).append(updatedBy);
sb.append(dm).append(updatedTime);
if (sb.length() > dm.length()) {
sb.delete(0, dm.length());
}
sb.insert(0, "{").append("}");
return sb.toString();
}
// ===================================================================================
// Accessor
// ========
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 String getDuplicateHostName() {
checkSpecifiedProperty("duplicateHostName");
return convertEmptyToNull(duplicateHostName);
}
public void setDuplicateHostName(String value) {
registerModifiedProperty("duplicateHostName");
this.duplicateHostName = value;
}
public String getRegularName() {
checkSpecifiedProperty("regularName");
return convertEmptyToNull(regularName);
}
public void setRegularName(String value) {
registerModifiedProperty("regularName");
this.regularName = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy