/* * Copyright 2012-2017 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.AccessTokenDbm; /** * ${table.comment} * @author ESFlute (using FreeGen) */ public class BsAccessToken extends EsAbstractEntity { // =================================================================================== // Definition // ========== private static final long serialVersionUID = 1L; protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // =================================================================================== // Attribute // ========= /** name */ protected String name; /** token */ protected String token; /** permissions */ protected String[] permissions; /** parameter_name */ protected String parameterName; /** expiredTime */ protected Long expiredTime; /** createdBy */ protected String createdBy; /** createdTime */ protected Long createdTime; /** updatedBy */ protected String updatedBy; /** updatedTime */ protected Long updatedTime; // [Referrers] *comment only // =================================================================================== // DB Meta // ======= @Override public AccessTokenDbm asDBMeta() { return AccessTokenDbm.getInstance(); } @Override public String asTableDbName() { return "access_token"; } // =================================================================================== // Source // ====== @Override public Map<String, Object> toSource() { Map<String, Object> sourceMap = new HashMap<>(); if (name != null) { addFieldToSource(sourceMap, "name", name); } if (token != null) { addFieldToSource(sourceMap, "token", token); } if (permissions != null) { addFieldToSource(sourceMap, "permissions", permissions); } if (parameterName != null) { addFieldToSource(sourceMap, "parameter_name", parameterName); } if (expiredTime != null) { addFieldToSource(sourceMap, "expiredTime", expiredTime); } if (createdBy != null) { addFieldToSource(sourceMap, "createdBy", createdBy); } if (createdTime != null) { addFieldToSource(sourceMap, "createdTime", createdTime); } if (updatedBy != null) { addFieldToSource(sourceMap, "updatedBy", updatedBy); } if (updatedTime != null) { addFieldToSource(sourceMap, "updatedTime", updatedTime); } return sourceMap; } protected void addFieldToSource(Map<String, Object> 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(name); sb.append(dm).append(token); sb.append(dm).append(permissions); sb.append(dm).append(parameterName); sb.append(dm).append(expiredTime); sb.append(dm).append(createdBy); sb.append(dm).append(createdTime); 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 getName() { checkSpecifiedProperty("name"); return convertEmptyToNull(name); } public void setName(String value) { registerModifiedProperty("name"); this.name = value; } public String getToken() { checkSpecifiedProperty("token"); return convertEmptyToNull(token); } public void setToken(String value) { registerModifiedProperty("token"); this.token = value; } public String[] getPermissions() { checkSpecifiedProperty("permissions"); return permissions; } public void setPermissions(String[] value) { registerModifiedProperty("permissions"); this.permissions = value; } public String getParameterName() { checkSpecifiedProperty("parameterName"); return convertEmptyToNull(parameterName); } public void setParameterName(String value) { registerModifiedProperty("parameterName"); this.parameterName = value; } public Long getExpiredTime() { checkSpecifiedProperty("expiredTime"); return expiredTime; } public void setExpiredTime(Long value) { registerModifiedProperty("expiredTime"); this.expiredTime = 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 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; } }