diff --git a/src/main/java/jp/sf/fess/annotation/CronExpression.java b/src/main/java/jp/sf/fess/annotation/CronExpression.java index 255082b1a..8f9aa1897 100644 --- a/src/main/java/jp/sf/fess/annotation/CronExpression.java +++ b/src/main/java/jp/sf/fess/annotation/CronExpression.java @@ -32,21 +32,21 @@ import org.seasar.struts.annotation.Validator; public @interface CronExpression { /** * A validation message. - * + * * @return */ Msg msg() default @Msg(key = "errors.cronexpression"); /** * Argument for a message - * + * * @return */ Arg arg0() default @Arg(key = StringUtil.EMPTY); /** * a target name for this validation - * + * * @return */ String target() default StringUtil.EMPTY; diff --git a/src/main/java/jp/sf/fess/annotation/UriType.java b/src/main/java/jp/sf/fess/annotation/UriType.java index 5deffb246..cd81ea9f1 100644 --- a/src/main/java/jp/sf/fess/annotation/UriType.java +++ b/src/main/java/jp/sf/fess/annotation/UriType.java @@ -35,21 +35,21 @@ public @interface UriType { /** * A validation message. - * + * * @return */ Msg msg() default @Msg(key = "errors.cronexpression"); /** * Argument for a message - * + * * @return */ Arg arg0() default @Arg(key = StringUtil.EMPTY); /** * a target name for this validation - * + * * @return */ String target() default StringUtil.EMPTY; diff --git a/src/main/java/jp/sf/fess/db/allcommon/DBFluteConfig.java b/src/main/java/jp/sf/fess/db/allcommon/DBFluteConfig.java index 370f62fe7..3605ca6c8 100644 --- a/src/main/java/jp/sf/fess/db/allcommon/DBFluteConfig.java +++ b/src/main/java/jp/sf/fess/db/allcommon/DBFluteConfig.java @@ -146,7 +146,7 @@ public class DBFluteConfig { if (isCurrentDBDef(DBDef.Oracle)) { // date formatting has two points: - // o the DATE type of Oracle has seconds + // o the DATE type of Oracle has seconds // o it uses a date literal of Oracle _logDateFormat = "timestamp $df:{yyyy-MM-dd HH:mm:ss}"; _logTimestampFormat = "timestamp $df:{" @@ -629,7 +629,7 @@ public class DBFluteConfig { // ========== /** * Register the basic value type.
- * This setting is shared per DBMS in the same class loader. + * This setting is shared per DBMS in the same class loader. * @param keyType The type as key. (NotNull) * @param valueType The basic value type. (NotNull) */ diff --git a/src/main/java/jp/sf/fess/db/allcommon/DBFluteInitializer.java b/src/main/java/jp/sf/fess/db/allcommon/DBFluteInitializer.java index 3df8b77f5..3958a1d74 100644 --- a/src/main/java/jp/sf/fess/db/allcommon/DBFluteInitializer.java +++ b/src/main/java/jp/sf/fess/db/allcommon/DBFluteInitializer.java @@ -106,7 +106,7 @@ public class DBFluteInitializer { } } - protected void loadCoolClasses() { // for S2Container + protected void loadCoolClasses() { // for S2Container ConditionBeanContext.loadCoolClasses(); // against the ClassLoader Headache! } diff --git a/src/main/java/jp/sf/fess/db/allcommon/ImplementedSqlClauseCreator.java b/src/main/java/jp/sf/fess/db/allcommon/ImplementedSqlClauseCreator.java index eedc430af..0e7c542af 100644 --- a/src/main/java/jp/sf/fess/db/allcommon/ImplementedSqlClauseCreator.java +++ b/src/main/java/jp/sf/fess/db/allcommon/ImplementedSqlClauseCreator.java @@ -47,7 +47,7 @@ public class ImplementedSqlClauseCreator implements SqlClauseCreator { // ============== /** * Create SQL clause. {for condition-bean} - * @param cb Condition-bean. (NotNull) + * @param cb Condition-bean. (NotNull) * @return SQL clause. (NotNull) */ @Override @@ -59,7 +59,7 @@ public class ImplementedSqlClauseCreator implements SqlClauseCreator { /** * Create SQL clause. - * @param tableDbName The DB name of table. (NotNull) + * @param tableDbName The DB name of table. (NotNull) * @return SQL clause. (NotNull) */ @Override diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsClickLogBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsClickLogBhv.java index 5804572c9..33dcc2cd0 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsClickLogBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsClickLogBhv.java @@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, SEARCH_ID, URL, REQUESTED_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     SEARCH_LOG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     searchLog
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -146,7 +146,7 @@ public abstract class BsClickLogBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final ClickLogCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final ClickLogCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -575,7 +575,7 @@ public abstract class BsClickLogBhv extends AbstractBehaviorWritable { * clickLogBhv.update(clickLog); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param clickLog The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -713,7 +713,7 @@ public abstract class BsClickLogBhv extends AbstractBehaviorWritable { * clickLogBhv.delete(clickLog); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param clickLog The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -846,14 +846,14 @@ public abstract class BsClickLogBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * clickLogBhv.batchUpdate(clickLogList, new SpecifyQuery() {
      *     public void specify(ClickLogCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * clickLogBhv.batchUpdate(clickLogList, new SpecifyQuery() {
      *     public void specify(ClickLogCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -926,7 +926,7 @@ public abstract class BsClickLogBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(clickLog entity, ClickLogCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -937,7 +937,7 @@ public abstract class BsClickLogBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1209,7 +1209,7 @@ public abstract class BsClickLogBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1225,7 +1225,7 @@ public abstract class BsClickLogBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * ClickLog clickLog = new ClickLog();
@@ -1284,27 +1284,27 @@ public abstract class BsClickLogBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsCrawlingSessionBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsCrawlingSessionBhv.java index 883a5a063..60a7e9598 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsCrawlingSessionBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsCrawlingSessionBhv.java @@ -47,28 +47,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, SESSION_ID, NAME, EXPIRED_TIME, CREATED_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     CRAWLING_SESSION_INFO
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     crawlingSessionInfoList
  * 
@@ -148,7 +148,7 @@ public abstract class BsCrawlingSessionBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final CrawlingSessionCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final CrawlingSessionCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -700,7 +700,7 @@ public abstract class BsCrawlingSessionBhv extends AbstractBehaviorWritable { * crawlingSessionBhv.update(crawlingSession); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param crawlingSession The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -842,7 +842,7 @@ public abstract class BsCrawlingSessionBhv extends AbstractBehaviorWritable { * crawlingSessionBhv.delete(crawlingSession); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param crawlingSession The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -981,14 +981,14 @@ public abstract class BsCrawlingSessionBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * crawlingSessionBhv.batchUpdate(crawlingSessionList, new SpecifyQuery() {
      *     public void specify(CrawlingSessionCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * crawlingSessionBhv.batchUpdate(crawlingSessionList, new SpecifyQuery() {
      *     public void specify(CrawlingSessionCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1062,7 +1062,7 @@ public abstract class BsCrawlingSessionBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(crawlingSession entity, CrawlingSessionCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1073,7 +1073,7 @@ public abstract class BsCrawlingSessionBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1350,7 +1350,7 @@ public abstract class BsCrawlingSessionBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1366,7 +1366,7 @@ public abstract class BsCrawlingSessionBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * CrawlingSession crawlingSession = new CrawlingSession();
@@ -1426,27 +1426,27 @@ public abstract class BsCrawlingSessionBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsCrawlingSessionInfoBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsCrawlingSessionInfoBhv.java index e0c8fc04f..646257754 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsCrawlingSessionInfoBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsCrawlingSessionInfoBhv.java @@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, CRAWLING_SESSION_ID, KEY, VALUE, CREATED_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     CRAWLING_SESSION
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     crawlingSession
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -144,7 +144,7 @@ public abstract class BsCrawlingSessionInfoBhv extends AbstractBehaviorWritable return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final CrawlingSessionInfoCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final CrawlingSessionInfoCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -597,7 +597,7 @@ public abstract class BsCrawlingSessionInfoBhv extends AbstractBehaviorWritable * crawlingSessionInfoBhv.update(crawlingSessionInfo); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param crawlingSessionInfo The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -741,7 +741,7 @@ public abstract class BsCrawlingSessionInfoBhv extends AbstractBehaviorWritable * crawlingSessionInfoBhv.delete(crawlingSessionInfo); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param crawlingSessionInfo The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -882,14 +882,14 @@ public abstract class BsCrawlingSessionInfoBhv extends AbstractBehaviorWritable * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * crawlingSessionInfoBhv.batchUpdate(crawlingSessionInfoList, new SpecifyQuery() {
      *     public void specify(CrawlingSessionInfoCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * crawlingSessionInfoBhv.batchUpdate(crawlingSessionInfoList, new SpecifyQuery() {
      *     public void specify(CrawlingSessionInfoCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -965,7 +965,7 @@ public abstract class BsCrawlingSessionInfoBhv extends AbstractBehaviorWritable
      *     public ConditionBean setup(crawlingSessionInfo entity, CrawlingSessionInfoCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -976,7 +976,7 @@ public abstract class BsCrawlingSessionInfoBhv extends AbstractBehaviorWritable
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1255,7 +1255,7 @@ public abstract class BsCrawlingSessionInfoBhv extends AbstractBehaviorWritable
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1271,7 +1271,7 @@ public abstract class BsCrawlingSessionInfoBhv extends AbstractBehaviorWritable * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * CrawlingSessionInfo crawlingSessionInfo = new CrawlingSessionInfo();
@@ -1332,27 +1332,27 @@ public abstract class BsCrawlingSessionInfoBhv extends AbstractBehaviorWritable
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsDataConfigToLabelTypeMappingBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsDataConfigToLabelTypeMappingBhv.java index ba434404d..f9ccd3b05 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsDataConfigToLabelTypeMappingBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsDataConfigToLabelTypeMappingBhv.java @@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, DATA_CONFIG_ID, LABEL_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     DATA_CRAWLING_CONFIG, LABEL_TYPE
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     dataCrawlingConfig, labelType
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -146,7 +146,7 @@ public abstract class BsDataConfigToLabelTypeMappingBhv extends return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final DataConfigToLabelTypeMappingCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final DataConfigToLabelTypeMappingCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -641,7 +641,7 @@ public abstract class BsDataConfigToLabelTypeMappingBhv extends * dataConfigToLabelTypeMappingBhv.update(dataConfigToLabelTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param dataConfigToLabelTypeMapping The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -791,7 +791,7 @@ public abstract class BsDataConfigToLabelTypeMappingBhv extends * dataConfigToLabelTypeMappingBhv.delete(dataConfigToLabelTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param dataConfigToLabelTypeMapping The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -937,14 +937,14 @@ public abstract class BsDataConfigToLabelTypeMappingBhv extends * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * dataConfigToLabelTypeMappingBhv.batchUpdate(dataConfigToLabelTypeMappingList, new SpecifyQuery() {
      *     public void specify(DataConfigToLabelTypeMappingCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * dataConfigToLabelTypeMappingBhv.batchUpdate(dataConfigToLabelTypeMappingList, new SpecifyQuery() {
      *     public void specify(DataConfigToLabelTypeMappingCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1021,7 +1021,7 @@ public abstract class BsDataConfigToLabelTypeMappingBhv extends
      *     public ConditionBean setup(dataConfigToLabelTypeMapping entity, DataConfigToLabelTypeMappingCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1032,7 +1032,7 @@ public abstract class BsDataConfigToLabelTypeMappingBhv extends
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1319,7 +1319,7 @@ public abstract class BsDataConfigToLabelTypeMappingBhv extends
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1335,7 +1335,7 @@ public abstract class BsDataConfigToLabelTypeMappingBhv extends * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * DataConfigToLabelTypeMapping dataConfigToLabelTypeMapping = new DataConfigToLabelTypeMapping();
@@ -1396,27 +1396,27 @@ public abstract class BsDataConfigToLabelTypeMappingBhv extends
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsDataConfigToRoleTypeMappingBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsDataConfigToRoleTypeMappingBhv.java index e8940a979..628470880 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsDataConfigToRoleTypeMappingBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsDataConfigToRoleTypeMappingBhv.java @@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, DATA_CONFIG_ID, ROLE_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     DATA_CRAWLING_CONFIG, ROLE_TYPE
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     dataCrawlingConfig, roleType
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -146,7 +146,7 @@ public abstract class BsDataConfigToRoleTypeMappingBhv extends return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final DataConfigToRoleTypeMappingCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final DataConfigToRoleTypeMappingCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -640,7 +640,7 @@ public abstract class BsDataConfigToRoleTypeMappingBhv extends * dataConfigToRoleTypeMappingBhv.update(dataConfigToRoleTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param dataConfigToRoleTypeMapping The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -790,7 +790,7 @@ public abstract class BsDataConfigToRoleTypeMappingBhv extends * dataConfigToRoleTypeMappingBhv.delete(dataConfigToRoleTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param dataConfigToRoleTypeMapping The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -936,14 +936,14 @@ public abstract class BsDataConfigToRoleTypeMappingBhv extends * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * dataConfigToRoleTypeMappingBhv.batchUpdate(dataConfigToRoleTypeMappingList, new SpecifyQuery() {
      *     public void specify(DataConfigToRoleTypeMappingCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * dataConfigToRoleTypeMappingBhv.batchUpdate(dataConfigToRoleTypeMappingList, new SpecifyQuery() {
      *     public void specify(DataConfigToRoleTypeMappingCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1020,7 +1020,7 @@ public abstract class BsDataConfigToRoleTypeMappingBhv extends
      *     public ConditionBean setup(dataConfigToRoleTypeMapping entity, DataConfigToRoleTypeMappingCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1031,7 +1031,7 @@ public abstract class BsDataConfigToRoleTypeMappingBhv extends
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1318,7 +1318,7 @@ public abstract class BsDataConfigToRoleTypeMappingBhv extends
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1334,7 +1334,7 @@ public abstract class BsDataConfigToRoleTypeMappingBhv extends * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * DataConfigToRoleTypeMapping dataConfigToRoleTypeMapping = new DataConfigToRoleTypeMapping();
@@ -1395,27 +1395,27 @@ public abstract class BsDataConfigToRoleTypeMappingBhv extends
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsDataCrawlingConfigBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsDataCrawlingConfigBhv.java index 796675133..a91aed55c 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsDataCrawlingConfigBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsDataCrawlingConfigBhv.java @@ -50,28 +50,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, HANDLER_NAME, HANDLER_PARAMETER, HANDLER_SCRIPT, BOOST, AVAILABLE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     DATA_CONFIG_TO_LABEL_TYPE_MAPPING, DATA_CONFIG_TO_ROLE_TYPE_MAPPING
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     dataConfigToLabelTypeMappingList, dataConfigToRoleTypeMappingList
  * 
@@ -151,7 +151,7 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final DataCrawlingConfigCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final DataCrawlingConfigCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -844,7 +844,7 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable { * dataCrawlingConfigBhv.update(dataCrawlingConfig); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param dataCrawlingConfig The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1072,7 +1072,7 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable { * dataCrawlingConfigBhv.delete(dataCrawlingConfig); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param dataCrawlingConfig The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1285,14 +1285,14 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, ExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * dataCrawlingConfigBhv.batchUpdate(dataCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(DataCrawlingConfigCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * dataCrawlingConfigBhv.batchUpdate(dataCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(DataCrawlingConfigCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1351,14 +1351,14 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable {
      * Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) 
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * dataCrawlingConfigBhv.batchUpdateNonstrict(dataCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(DataCrawlingConfigCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * dataCrawlingConfigBhv.batchUpdateNonstrict(dataCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(DataCrawlingConfigCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1461,7 +1461,7 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(dataCrawlingConfig entity, DataCrawlingConfigCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1472,7 +1472,7 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1851,7 +1851,7 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1867,7 +1867,7 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * DataCrawlingConfig dataCrawlingConfig = new DataCrawlingConfig();
@@ -1927,27 +1927,27 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsFailureUrlBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsFailureUrlBhv.java index 53098afb1..f5c7d302d 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsFailureUrlBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsFailureUrlBhv.java @@ -42,30 +42,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, URL, THREAD_NAME, ERROR_NAME, ERROR_LOG, ERROR_COUNT, LAST_ACCESS_TIME, CONFIG_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -143,7 +143,7 @@ public abstract class BsFailureUrlBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final FailureUrlCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final FailureUrlCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -552,7 +552,7 @@ public abstract class BsFailureUrlBhv extends AbstractBehaviorWritable { * failureUrlBhv.update(failureUrl); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param failureUrl The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -691,7 +691,7 @@ public abstract class BsFailureUrlBhv extends AbstractBehaviorWritable { * failureUrlBhv.delete(failureUrl); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param failureUrl The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -826,14 +826,14 @@ public abstract class BsFailureUrlBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * failureUrlBhv.batchUpdate(failureUrlList, new SpecifyQuery() {
      *     public void specify(FailureUrlCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * failureUrlBhv.batchUpdate(failureUrlList, new SpecifyQuery() {
      *     public void specify(FailureUrlCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -906,7 +906,7 @@ public abstract class BsFailureUrlBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(failureUrl entity, FailureUrlCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -917,7 +917,7 @@ public abstract class BsFailureUrlBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1189,7 +1189,7 @@ public abstract class BsFailureUrlBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1205,7 +1205,7 @@ public abstract class BsFailureUrlBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * FailureUrl failureUrl = new FailureUrl();
@@ -1264,27 +1264,27 @@ public abstract class BsFailureUrlBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsFavoriteLogBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsFavoriteLogBhv.java index d246bc111..62c76b896 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsFavoriteLogBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsFavoriteLogBhv.java @@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, USER_ID, URL, CREATED_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     USER_INFO
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     userInfo
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -148,7 +148,7 @@ public abstract class BsFavoriteLogBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final FavoriteLogCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final FavoriteLogCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -583,7 +583,7 @@ public abstract class BsFavoriteLogBhv extends AbstractBehaviorWritable { * favoriteLogBhv.update(favoriteLog); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param favoriteLog The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -723,7 +723,7 @@ public abstract class BsFavoriteLogBhv extends AbstractBehaviorWritable { * favoriteLogBhv.delete(favoriteLog); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param favoriteLog The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -858,14 +858,14 @@ public abstract class BsFavoriteLogBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * favoriteLogBhv.batchUpdate(favoriteLogList, new SpecifyQuery() {
      *     public void specify(FavoriteLogCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * favoriteLogBhv.batchUpdate(favoriteLogList, new SpecifyQuery() {
      *     public void specify(FavoriteLogCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -938,7 +938,7 @@ public abstract class BsFavoriteLogBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(favoriteLog entity, FavoriteLogCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -949,7 +949,7 @@ public abstract class BsFavoriteLogBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1221,7 +1221,7 @@ public abstract class BsFavoriteLogBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1237,7 +1237,7 @@ public abstract class BsFavoriteLogBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * FavoriteLog favoriteLog = new FavoriteLog();
@@ -1296,27 +1296,27 @@ public abstract class BsFavoriteLogBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsFileAuthenticationBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsFileAuthenticationBhv.java index 482c98c9b..904ce5205 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsFileAuthenticationBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsFileAuthenticationBhv.java @@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, HOSTNAME, PORT, PROTOCOL_SCHEME, USERNAME, PASSWORD, PARAMETERS, FILE_CRAWLING_CONFIG_ID, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
  *     FILE_CRAWLING_CONFIG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     fileCrawlingConfig
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -144,7 +144,7 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final FileAuthenticationCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final FileAuthenticationCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -592,7 +592,7 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable { * fileAuthenticationBhv.update(fileAuthentication); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param fileAuthentication The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -820,7 +820,7 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable { * fileAuthenticationBhv.delete(fileAuthentication); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param fileAuthentication The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1033,14 +1033,14 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, ExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * fileAuthenticationBhv.batchUpdate(fileAuthenticationList, new SpecifyQuery() {
      *     public void specify(FileAuthenticationCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * fileAuthenticationBhv.batchUpdate(fileAuthenticationList, new SpecifyQuery() {
      *     public void specify(FileAuthenticationCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1099,14 +1099,14 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable {
      * Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) 
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * fileAuthenticationBhv.batchUpdateNonstrict(fileAuthenticationList, new SpecifyQuery() {
      *     public void specify(FileAuthenticationCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * fileAuthenticationBhv.batchUpdateNonstrict(fileAuthenticationList, new SpecifyQuery() {
      *     public void specify(FileAuthenticationCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1209,7 +1209,7 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(fileAuthentication entity, FileAuthenticationCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1220,7 +1220,7 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1599,7 +1599,7 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1615,7 +1615,7 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * FileAuthentication fileAuthentication = new FileAuthentication();
@@ -1675,27 +1675,27 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsFileConfigToLabelTypeMappingBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsFileConfigToLabelTypeMappingBhv.java index 0f8de5681..136587b70 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsFileConfigToLabelTypeMappingBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsFileConfigToLabelTypeMappingBhv.java @@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, FILE_CONFIG_ID, LABEL_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     LABEL_TYPE, FILE_CRAWLING_CONFIG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     labelType, fileCrawlingConfig
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -146,7 +146,7 @@ public abstract class BsFileConfigToLabelTypeMappingBhv extends return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final FileConfigToLabelTypeMappingCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final FileConfigToLabelTypeMappingCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -641,7 +641,7 @@ public abstract class BsFileConfigToLabelTypeMappingBhv extends * fileConfigToLabelTypeMappingBhv.update(fileConfigToLabelTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param fileConfigToLabelTypeMapping The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -791,7 +791,7 @@ public abstract class BsFileConfigToLabelTypeMappingBhv extends * fileConfigToLabelTypeMappingBhv.delete(fileConfigToLabelTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param fileConfigToLabelTypeMapping The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -937,14 +937,14 @@ public abstract class BsFileConfigToLabelTypeMappingBhv extends * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * fileConfigToLabelTypeMappingBhv.batchUpdate(fileConfigToLabelTypeMappingList, new SpecifyQuery() {
      *     public void specify(FileConfigToLabelTypeMappingCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * fileConfigToLabelTypeMappingBhv.batchUpdate(fileConfigToLabelTypeMappingList, new SpecifyQuery() {
      *     public void specify(FileConfigToLabelTypeMappingCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1021,7 +1021,7 @@ public abstract class BsFileConfigToLabelTypeMappingBhv extends
      *     public ConditionBean setup(fileConfigToLabelTypeMapping entity, FileConfigToLabelTypeMappingCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1032,7 +1032,7 @@ public abstract class BsFileConfigToLabelTypeMappingBhv extends
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1319,7 +1319,7 @@ public abstract class BsFileConfigToLabelTypeMappingBhv extends
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1335,7 +1335,7 @@ public abstract class BsFileConfigToLabelTypeMappingBhv extends * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * FileConfigToLabelTypeMapping fileConfigToLabelTypeMapping = new FileConfigToLabelTypeMapping();
@@ -1396,27 +1396,27 @@ public abstract class BsFileConfigToLabelTypeMappingBhv extends
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsFileConfigToRoleTypeMappingBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsFileConfigToRoleTypeMappingBhv.java index 330d8275f..0f3998183 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsFileConfigToRoleTypeMappingBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsFileConfigToRoleTypeMappingBhv.java @@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, FILE_CONFIG_ID, ROLE_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     FILE_CRAWLING_CONFIG, ROLE_TYPE
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     fileCrawlingConfig, roleType
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -146,7 +146,7 @@ public abstract class BsFileConfigToRoleTypeMappingBhv extends return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final FileConfigToRoleTypeMappingCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final FileConfigToRoleTypeMappingCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -640,7 +640,7 @@ public abstract class BsFileConfigToRoleTypeMappingBhv extends * fileConfigToRoleTypeMappingBhv.update(fileConfigToRoleTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param fileConfigToRoleTypeMapping The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -790,7 +790,7 @@ public abstract class BsFileConfigToRoleTypeMappingBhv extends * fileConfigToRoleTypeMappingBhv.delete(fileConfigToRoleTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param fileConfigToRoleTypeMapping The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -936,14 +936,14 @@ public abstract class BsFileConfigToRoleTypeMappingBhv extends * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * fileConfigToRoleTypeMappingBhv.batchUpdate(fileConfigToRoleTypeMappingList, new SpecifyQuery() {
      *     public void specify(FileConfigToRoleTypeMappingCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * fileConfigToRoleTypeMappingBhv.batchUpdate(fileConfigToRoleTypeMappingList, new SpecifyQuery() {
      *     public void specify(FileConfigToRoleTypeMappingCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1020,7 +1020,7 @@ public abstract class BsFileConfigToRoleTypeMappingBhv extends
      *     public ConditionBean setup(fileConfigToRoleTypeMapping entity, FileConfigToRoleTypeMappingCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1031,7 +1031,7 @@ public abstract class BsFileConfigToRoleTypeMappingBhv extends
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1318,7 +1318,7 @@ public abstract class BsFileConfigToRoleTypeMappingBhv extends
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1334,7 +1334,7 @@ public abstract class BsFileConfigToRoleTypeMappingBhv extends * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * FileConfigToRoleTypeMapping fileConfigToRoleTypeMapping = new FileConfigToRoleTypeMapping();
@@ -1395,27 +1395,27 @@ public abstract class BsFileConfigToRoleTypeMappingBhv extends
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsFileCrawlingConfigBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsFileCrawlingConfigBhv.java index 0e5ff33f2..374bf2374 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsFileCrawlingConfigBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsFileCrawlingConfigBhv.java @@ -53,28 +53,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, PATHS, INCLUDED_PATHS, EXCLUDED_PATHS, INCLUDED_DOC_PATHS, EXCLUDED_DOC_PATHS, CONFIG_PARAMETER, DEPTH, MAX_ACCESS_COUNT, NUM_OF_THREAD, INTERVAL_TIME, BOOST, AVAILABLE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     FILE_AUTHENTICATION, FILE_CONFIG_TO_LABEL_TYPE_MAPPING, FILE_CONFIG_TO_ROLE_TYPE_MAPPING
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     fileAuthenticationList, fileConfigToLabelTypeMappingList, fileConfigToRoleTypeMappingList
  * 
@@ -154,7 +154,7 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final FileCrawlingConfigCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final FileCrawlingConfigCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -981,7 +981,7 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable { * fileCrawlingConfigBhv.update(fileCrawlingConfig); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param fileCrawlingConfig The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1209,7 +1209,7 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable { * fileCrawlingConfigBhv.delete(fileCrawlingConfig); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param fileCrawlingConfig The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1422,14 +1422,14 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, ExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * fileCrawlingConfigBhv.batchUpdate(fileCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(FileCrawlingConfigCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * fileCrawlingConfigBhv.batchUpdate(fileCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(FileCrawlingConfigCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1488,14 +1488,14 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable {
      * Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) 
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * fileCrawlingConfigBhv.batchUpdateNonstrict(fileCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(FileCrawlingConfigCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * fileCrawlingConfigBhv.batchUpdateNonstrict(fileCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(FileCrawlingConfigCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1598,7 +1598,7 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(fileCrawlingConfig entity, FileCrawlingConfigCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1609,7 +1609,7 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1988,7 +1988,7 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -2004,7 +2004,7 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * FileCrawlingConfig fileCrawlingConfig = new FileCrawlingConfig();
@@ -2064,27 +2064,27 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsJobLogBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsJobLogBhv.java index adaad48b5..32cc05aa4 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsJobLogBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsJobLogBhv.java @@ -42,30 +42,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, JOB_NAME, JOB_STATUS, TARGET, SCRIPT_TYPE, SCRIPT_DATA, SCRIPT_RESULT, START_TIME, END_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -143,7 +143,7 @@ public abstract class BsJobLogBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final JobLogCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final JobLogCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -546,7 +546,7 @@ public abstract class BsJobLogBhv extends AbstractBehaviorWritable { * jobLogBhv.update(jobLog); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param jobLog The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -684,7 +684,7 @@ public abstract class BsJobLogBhv extends AbstractBehaviorWritable { * jobLogBhv.delete(jobLog); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param jobLog The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -817,14 +817,14 @@ public abstract class BsJobLogBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * jobLogBhv.batchUpdate(jobLogList, new SpecifyQuery() {
      *     public void specify(JobLogCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * jobLogBhv.batchUpdate(jobLogList, new SpecifyQuery() {
      *     public void specify(JobLogCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -897,7 +897,7 @@ public abstract class BsJobLogBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(jobLog entity, JobLogCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -908,7 +908,7 @@ public abstract class BsJobLogBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1179,7 +1179,7 @@ public abstract class BsJobLogBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1195,7 +1195,7 @@ public abstract class BsJobLogBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * JobLog jobLog = new JobLog();
@@ -1254,27 +1254,27 @@ public abstract class BsJobLogBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsLabelTypeBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsLabelTypeBhv.java index 222a65d7e..10c0e79a2 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsLabelTypeBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsLabelTypeBhv.java @@ -56,28 +56,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, VALUE, INCLUDED_PATHS, EXCLUDED_PATHS, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     DATA_CONFIG_TO_LABEL_TYPE_MAPPING, FILE_CONFIG_TO_LABEL_TYPE_MAPPING, LABEL_TYPE_TO_ROLE_TYPE_MAPPING, WEB_CONFIG_TO_LABEL_TYPE_MAPPING
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     dataConfigToLabelTypeMappingList, fileConfigToLabelTypeMappingList, labelTypeToRoleTypeMappingList, webConfigToLabelTypeMappingList
  * 
@@ -157,7 +157,7 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final LabelTypeCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final LabelTypeCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -1102,7 +1102,7 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable { * labelTypeBhv.update(labelType); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param labelType The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1321,7 +1321,7 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable { * labelTypeBhv.delete(labelType); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param labelType The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1524,14 +1524,14 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, ExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * labelTypeBhv.batchUpdate(labelTypeList, new SpecifyQuery() {
      *     public void specify(LabelTypeCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * labelTypeBhv.batchUpdate(labelTypeList, new SpecifyQuery() {
      *     public void specify(LabelTypeCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1587,14 +1587,14 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable {
      * Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) 
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * labelTypeBhv.batchUpdateNonstrict(labelTypeList, new SpecifyQuery() {
      *     public void specify(LabelTypeCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * labelTypeBhv.batchUpdateNonstrict(labelTypeList, new SpecifyQuery() {
      *     public void specify(LabelTypeCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1692,7 +1692,7 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(labelType entity, LabelTypeCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1703,7 +1703,7 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -2071,7 +2071,7 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -2087,7 +2087,7 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * LabelType labelType = new LabelType();
@@ -2146,27 +2146,27 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsLabelTypeToRoleTypeMappingBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsLabelTypeToRoleTypeMappingBhv.java index 5982c4561..a865c07b2 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsLabelTypeToRoleTypeMappingBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsLabelTypeToRoleTypeMappingBhv.java @@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, LABEL_TYPE_ID, ROLE_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     LABEL_TYPE, ROLE_TYPE
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     labelType, roleType
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -146,7 +146,7 @@ public abstract class BsLabelTypeToRoleTypeMappingBhv extends return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final LabelTypeToRoleTypeMappingCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final LabelTypeToRoleTypeMappingCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -639,7 +639,7 @@ public abstract class BsLabelTypeToRoleTypeMappingBhv extends * labelTypeToRoleTypeMappingBhv.update(labelTypeToRoleTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param labelTypeToRoleTypeMapping The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -789,7 +789,7 @@ public abstract class BsLabelTypeToRoleTypeMappingBhv extends * labelTypeToRoleTypeMappingBhv.delete(labelTypeToRoleTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param labelTypeToRoleTypeMapping The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -935,14 +935,14 @@ public abstract class BsLabelTypeToRoleTypeMappingBhv extends * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * labelTypeToRoleTypeMappingBhv.batchUpdate(labelTypeToRoleTypeMappingList, new SpecifyQuery() {
      *     public void specify(LabelTypeToRoleTypeMappingCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * labelTypeToRoleTypeMappingBhv.batchUpdate(labelTypeToRoleTypeMappingList, new SpecifyQuery() {
      *     public void specify(LabelTypeToRoleTypeMappingCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1019,7 +1019,7 @@ public abstract class BsLabelTypeToRoleTypeMappingBhv extends
      *     public ConditionBean setup(labelTypeToRoleTypeMapping entity, LabelTypeToRoleTypeMappingCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1030,7 +1030,7 @@ public abstract class BsLabelTypeToRoleTypeMappingBhv extends
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1316,7 +1316,7 @@ public abstract class BsLabelTypeToRoleTypeMappingBhv extends
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1332,7 +1332,7 @@ public abstract class BsLabelTypeToRoleTypeMappingBhv extends * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * LabelTypeToRoleTypeMapping labelTypeToRoleTypeMapping = new LabelTypeToRoleTypeMapping();
@@ -1393,27 +1393,27 @@ public abstract class BsLabelTypeToRoleTypeMappingBhv extends
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsOverlappingHostBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsOverlappingHostBhv.java index 21241f713..70efd4e3e 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsOverlappingHostBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsOverlappingHostBhv.java @@ -42,30 +42,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, REGULAR_NAME, OVERLAPPING_NAME, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -143,7 +143,7 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final OverlappingHostCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final OverlappingHostCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -558,7 +558,7 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable { * overlappingHostBhv.update(overlappingHost); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param overlappingHost The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -782,7 +782,7 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable { * overlappingHostBhv.delete(overlappingHost); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param overlappingHost The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -992,14 +992,14 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, ExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * overlappingHostBhv.batchUpdate(overlappingHostList, new SpecifyQuery() {
      *     public void specify(OverlappingHostCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * overlappingHostBhv.batchUpdate(overlappingHostList, new SpecifyQuery() {
      *     public void specify(OverlappingHostCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1057,14 +1057,14 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable {
      * Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) 
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * overlappingHostBhv.batchUpdateNonstrict(overlappingHostList, new SpecifyQuery() {
      *     public void specify(OverlappingHostCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * overlappingHostBhv.batchUpdateNonstrict(overlappingHostList, new SpecifyQuery() {
      *     public void specify(OverlappingHostCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1166,7 +1166,7 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(overlappingHost entity, OverlappingHostCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1177,7 +1177,7 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1551,7 +1551,7 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1567,7 +1567,7 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * OverlappingHost overlappingHost = new OverlappingHost();
@@ -1627,27 +1627,27 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsPathMappingBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsPathMappingBhv.java index d72d3b1a1..dac1cc1c2 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsPathMappingBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsPathMappingBhv.java @@ -42,30 +42,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, REGEX, REPLACEMENT, PROCESS_TYPE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -143,7 +143,7 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final PathMappingCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final PathMappingCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -552,7 +552,7 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable { * pathMappingBhv.update(pathMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param pathMapping The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -772,7 +772,7 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable { * pathMappingBhv.delete(pathMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param pathMapping The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -977,14 +977,14 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, ExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * pathMappingBhv.batchUpdate(pathMappingList, new SpecifyQuery() {
      *     public void specify(PathMappingCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * pathMappingBhv.batchUpdate(pathMappingList, new SpecifyQuery() {
      *     public void specify(PathMappingCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1041,14 +1041,14 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable {
      * Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) 
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * pathMappingBhv.batchUpdateNonstrict(pathMappingList, new SpecifyQuery() {
      *     public void specify(PathMappingCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * pathMappingBhv.batchUpdateNonstrict(pathMappingList, new SpecifyQuery() {
      *     public void specify(PathMappingCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1147,7 +1147,7 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(pathMapping entity, PathMappingCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1158,7 +1158,7 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1526,7 +1526,7 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1542,7 +1542,7 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * PathMapping pathMapping = new PathMapping();
@@ -1601,27 +1601,27 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsRequestHeaderBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsRequestHeaderBhv.java index 4365ec663..732679e6e 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsRequestHeaderBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsRequestHeaderBhv.java @@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, VALUE, WEB_CRAWLING_CONFIG_ID, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
  *     WEB_CRAWLING_CONFIG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     webCrawlingConfig
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -144,7 +144,7 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final RequestHeaderCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final RequestHeaderCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -581,7 +581,7 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable { * requestHeaderBhv.update(requestHeader); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param requestHeader The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -803,7 +803,7 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable { * requestHeaderBhv.delete(requestHeader); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param requestHeader The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1009,14 +1009,14 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, ExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * requestHeaderBhv.batchUpdate(requestHeaderList, new SpecifyQuery() {
      *     public void specify(RequestHeaderCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * requestHeaderBhv.batchUpdate(requestHeaderList, new SpecifyQuery() {
      *     public void specify(RequestHeaderCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1074,14 +1074,14 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable {
      * Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) 
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * requestHeaderBhv.batchUpdateNonstrict(requestHeaderList, new SpecifyQuery() {
      *     public void specify(RequestHeaderCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * requestHeaderBhv.batchUpdateNonstrict(requestHeaderList, new SpecifyQuery() {
      *     public void specify(RequestHeaderCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1182,7 +1182,7 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(requestHeader entity, RequestHeaderCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1193,7 +1193,7 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1566,7 +1566,7 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1582,7 +1582,7 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * RequestHeader requestHeader = new RequestHeader();
@@ -1641,27 +1641,27 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsRoleTypeBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsRoleTypeBhv.java index 2a5ec6f39..2fdc989ee 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsRoleTypeBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsRoleTypeBhv.java @@ -56,28 +56,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, VALUE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     DATA_CONFIG_TO_ROLE_TYPE_MAPPING, FILE_CONFIG_TO_ROLE_TYPE_MAPPING, LABEL_TYPE_TO_ROLE_TYPE_MAPPING, WEB_CONFIG_TO_ROLE_TYPE_MAPPING
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     dataConfigToRoleTypeMappingList, fileConfigToRoleTypeMappingList, labelTypeToRoleTypeMappingList, webConfigToRoleTypeMappingList
  * 
@@ -157,7 +157,7 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final RoleTypeCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final RoleTypeCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -1100,7 +1100,7 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable { * roleTypeBhv.update(roleType); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param roleType The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1318,7 +1318,7 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable { * roleTypeBhv.delete(roleType); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param roleType The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1519,14 +1519,14 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, ExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * roleTypeBhv.batchUpdate(roleTypeList, new SpecifyQuery() {
      *     public void specify(RoleTypeCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * roleTypeBhv.batchUpdate(roleTypeList, new SpecifyQuery() {
      *     public void specify(RoleTypeCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1582,14 +1582,14 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable {
      * Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) 
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * roleTypeBhv.batchUpdateNonstrict(roleTypeList, new SpecifyQuery() {
      *     public void specify(RoleTypeCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * roleTypeBhv.batchUpdateNonstrict(roleTypeList, new SpecifyQuery() {
      *     public void specify(RoleTypeCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1687,7 +1687,7 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(roleType entity, RoleTypeCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1698,7 +1698,7 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -2064,7 +2064,7 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -2080,7 +2080,7 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * RoleType roleType = new RoleType();
@@ -2139,27 +2139,27 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsScheduledJobBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsScheduledJobBhv.java index 6ee40d62c..f6e485603 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsScheduledJobBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsScheduledJobBhv.java @@ -42,30 +42,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, TARGET, CRON_EXPRESSION, SCRIPT_TYPE, SCRIPT_DATA, CRAWLER, JOB_LOGGING, AVAILABLE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -143,7 +143,7 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final ScheduledJobCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final ScheduledJobCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -552,7 +552,7 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable { * scheduledJobBhv.update(scheduledJob); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param scheduledJob The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -773,7 +773,7 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable { * scheduledJobBhv.delete(scheduledJob); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param scheduledJob The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -978,14 +978,14 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, ExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * scheduledJobBhv.batchUpdate(scheduledJobList, new SpecifyQuery() {
      *     public void specify(ScheduledJobCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * scheduledJobBhv.batchUpdate(scheduledJobList, new SpecifyQuery() {
      *     public void specify(ScheduledJobCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1042,14 +1042,14 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable {
      * Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) 
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * scheduledJobBhv.batchUpdateNonstrict(scheduledJobList, new SpecifyQuery() {
      *     public void specify(ScheduledJobCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * scheduledJobBhv.batchUpdateNonstrict(scheduledJobList, new SpecifyQuery() {
      *     public void specify(ScheduledJobCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1149,7 +1149,7 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(scheduledJob entity, ScheduledJobCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1160,7 +1160,7 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1529,7 +1529,7 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1545,7 +1545,7 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * ScheduledJob scheduledJob = new ScheduledJob();
@@ -1604,27 +1604,27 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsSearchFieldLogBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsSearchFieldLogBhv.java index d755116ee..220552d13 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsSearchFieldLogBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsSearchFieldLogBhv.java @@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, SEARCH_ID, NAME, VALUE
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     SEARCH_LOG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     searchLog
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -146,7 +146,7 @@ public abstract class BsSearchFieldLogBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final SearchFieldLogCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final SearchFieldLogCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -584,7 +584,7 @@ public abstract class BsSearchFieldLogBhv extends AbstractBehaviorWritable { * searchFieldLogBhv.update(searchFieldLog); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param searchFieldLog The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -726,7 +726,7 @@ public abstract class BsSearchFieldLogBhv extends AbstractBehaviorWritable { * searchFieldLogBhv.delete(searchFieldLog); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param searchFieldLog The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -865,14 +865,14 @@ public abstract class BsSearchFieldLogBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * searchFieldLogBhv.batchUpdate(searchFieldLogList, new SpecifyQuery() {
      *     public void specify(SearchFieldLogCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * searchFieldLogBhv.batchUpdate(searchFieldLogList, new SpecifyQuery() {
      *     public void specify(SearchFieldLogCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -946,7 +946,7 @@ public abstract class BsSearchFieldLogBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(searchFieldLog entity, SearchFieldLogCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -957,7 +957,7 @@ public abstract class BsSearchFieldLogBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1234,7 +1234,7 @@ public abstract class BsSearchFieldLogBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1250,7 +1250,7 @@ public abstract class BsSearchFieldLogBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * SearchFieldLog searchFieldLog = new SearchFieldLog();
@@ -1310,27 +1310,27 @@ public abstract class BsSearchFieldLogBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsSearchLogBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsSearchLogBhv.java index e2ed78349..c279db41f 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsSearchLogBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsSearchLogBhv.java @@ -51,28 +51,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, SEARCH_WORD, REQUESTED_TIME, RESPONSE_TIME, HIT_COUNT, QUERY_OFFSET, QUERY_PAGE_SIZE, USER_AGENT, REFERER, CLIENT_IP, USER_SESSION_ID, ACCESS_TYPE, USER_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     USER_INFO
- * 
+ *
  * [referrer table]
  *     CLICK_LOG, SEARCH_FIELD_LOG
- * 
+ *
  * [foreign property]
  *     userInfo
- * 
+ *
  * [referrer property]
  *     clickLogList, searchFieldLogList
  * 
@@ -168,7 +168,7 @@ public abstract class BsSearchLogBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final SearchLogCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final SearchLogCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -852,7 +852,7 @@ public abstract class BsSearchLogBhv extends AbstractBehaviorWritable { * searchLogBhv.update(searchLog); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param searchLog The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -991,7 +991,7 @@ public abstract class BsSearchLogBhv extends AbstractBehaviorWritable { * searchLogBhv.delete(searchLog); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param searchLog The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -1126,14 +1126,14 @@ public abstract class BsSearchLogBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * searchLogBhv.batchUpdate(searchLogList, new SpecifyQuery() {
      *     public void specify(SearchLogCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * searchLogBhv.batchUpdate(searchLogList, new SpecifyQuery() {
      *     public void specify(SearchLogCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1206,7 +1206,7 @@ public abstract class BsSearchLogBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(searchLog entity, SearchLogCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1217,7 +1217,7 @@ public abstract class BsSearchLogBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1489,7 +1489,7 @@ public abstract class BsSearchLogBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1505,7 +1505,7 @@ public abstract class BsSearchLogBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * SearchLog searchLog = new SearchLog();
@@ -1564,27 +1564,27 @@ public abstract class BsSearchLogBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsUserInfoBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsUserInfoBhv.java index 109a00e85..657c9dee4 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsUserInfoBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsUserInfoBhv.java @@ -50,28 +50,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, CODE, CREATED_TIME, UPDATED_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     FAVORITE_LOG, SEARCH_LOG
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     favoriteLogList, searchLogList
  * 
@@ -151,7 +151,7 @@ public abstract class BsUserInfoBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final UserInfoCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final UserInfoCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -808,7 +808,7 @@ public abstract class BsUserInfoBhv extends AbstractBehaviorWritable { * userInfoBhv.update(userInfo); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param userInfo The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -946,7 +946,7 @@ public abstract class BsUserInfoBhv extends AbstractBehaviorWritable { * userInfoBhv.delete(userInfo); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param userInfo The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -1079,14 +1079,14 @@ public abstract class BsUserInfoBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * userInfoBhv.batchUpdate(userInfoList, new SpecifyQuery() {
      *     public void specify(UserInfoCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * userInfoBhv.batchUpdate(userInfoList, new SpecifyQuery() {
      *     public void specify(UserInfoCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1159,7 +1159,7 @@ public abstract class BsUserInfoBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(userInfo entity, UserInfoCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1170,7 +1170,7 @@ public abstract class BsUserInfoBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1442,7 +1442,7 @@ public abstract class BsUserInfoBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1458,7 +1458,7 @@ public abstract class BsUserInfoBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * UserInfo userInfo = new UserInfo();
@@ -1517,27 +1517,27 @@ public abstract class BsUserInfoBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsWebAuthenticationBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsWebAuthenticationBhv.java index ddeeb27ee..0492ad1d3 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsWebAuthenticationBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsWebAuthenticationBhv.java @@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, HOSTNAME, PORT, AUTH_REALM, PROTOCOL_SCHEME, USERNAME, PASSWORD, PARAMETERS, WEB_CRAWLING_CONFIG_ID, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
  *     WEB_CRAWLING_CONFIG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     webCrawlingConfig
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -144,7 +144,7 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final WebAuthenticationCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final WebAuthenticationCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -592,7 +592,7 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable { * webAuthenticationBhv.update(webAuthentication); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param webAuthentication The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -818,7 +818,7 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable { * webAuthenticationBhv.delete(webAuthentication); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param webAuthentication The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1028,14 +1028,14 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, ExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * webAuthenticationBhv.batchUpdate(webAuthenticationList, new SpecifyQuery() {
      *     public void specify(WebAuthenticationCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * webAuthenticationBhv.batchUpdate(webAuthenticationList, new SpecifyQuery() {
      *     public void specify(WebAuthenticationCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1094,14 +1094,14 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable {
      * Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) 
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * webAuthenticationBhv.batchUpdateNonstrict(webAuthenticationList, new SpecifyQuery() {
      *     public void specify(WebAuthenticationCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * webAuthenticationBhv.batchUpdateNonstrict(webAuthenticationList, new SpecifyQuery() {
      *     public void specify(WebAuthenticationCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1203,7 +1203,7 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(webAuthentication entity, WebAuthenticationCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1214,7 +1214,7 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1592,7 +1592,7 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1608,7 +1608,7 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * WebAuthentication webAuthentication = new WebAuthentication();
@@ -1668,27 +1668,27 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsWebConfigToLabelTypeMappingBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsWebConfigToLabelTypeMappingBhv.java index af2c7375f..721cac172 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsWebConfigToLabelTypeMappingBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsWebConfigToLabelTypeMappingBhv.java @@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, WEB_CONFIG_ID, LABEL_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     LABEL_TYPE, WEB_CRAWLING_CONFIG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     labelType, webCrawlingConfig
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -146,7 +146,7 @@ public abstract class BsWebConfigToLabelTypeMappingBhv extends return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final WebConfigToLabelTypeMappingCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final WebConfigToLabelTypeMappingCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -640,7 +640,7 @@ public abstract class BsWebConfigToLabelTypeMappingBhv extends * webConfigToLabelTypeMappingBhv.update(webConfigToLabelTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param webConfigToLabelTypeMapping The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -790,7 +790,7 @@ public abstract class BsWebConfigToLabelTypeMappingBhv extends * webConfigToLabelTypeMappingBhv.delete(webConfigToLabelTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param webConfigToLabelTypeMapping The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -936,14 +936,14 @@ public abstract class BsWebConfigToLabelTypeMappingBhv extends * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * webConfigToLabelTypeMappingBhv.batchUpdate(webConfigToLabelTypeMappingList, new SpecifyQuery() {
      *     public void specify(WebConfigToLabelTypeMappingCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * webConfigToLabelTypeMappingBhv.batchUpdate(webConfigToLabelTypeMappingList, new SpecifyQuery() {
      *     public void specify(WebConfigToLabelTypeMappingCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1020,7 +1020,7 @@ public abstract class BsWebConfigToLabelTypeMappingBhv extends
      *     public ConditionBean setup(webConfigToLabelTypeMapping entity, WebConfigToLabelTypeMappingCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1031,7 +1031,7 @@ public abstract class BsWebConfigToLabelTypeMappingBhv extends
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1318,7 +1318,7 @@ public abstract class BsWebConfigToLabelTypeMappingBhv extends
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1334,7 +1334,7 @@ public abstract class BsWebConfigToLabelTypeMappingBhv extends * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * WebConfigToLabelTypeMapping webConfigToLabelTypeMapping = new WebConfigToLabelTypeMapping();
@@ -1395,27 +1395,27 @@ public abstract class BsWebConfigToLabelTypeMappingBhv extends
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsWebConfigToRoleTypeMappingBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsWebConfigToRoleTypeMappingBhv.java index e66389a21..6051a93bd 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsWebConfigToRoleTypeMappingBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsWebConfigToRoleTypeMappingBhv.java @@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, WEB_CONFIG_ID, ROLE_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     WEB_CRAWLING_CONFIG, ROLE_TYPE
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     webCrawlingConfig, roleType
- * 
+ *
  * [referrer property]
- *     
+ *
  * 
* @author DBFlute(AutoGenerator) */ @@ -146,7 +146,7 @@ public abstract class BsWebConfigToRoleTypeMappingBhv extends return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final WebConfigToRoleTypeMappingCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final WebConfigToRoleTypeMappingCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -640,7 +640,7 @@ public abstract class BsWebConfigToRoleTypeMappingBhv extends * webConfigToRoleTypeMappingBhv.update(webConfigToRoleTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param webConfigToRoleTypeMapping The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -790,7 +790,7 @@ public abstract class BsWebConfigToRoleTypeMappingBhv extends * webConfigToRoleTypeMappingBhv.delete(webConfigToRoleTypeMapping); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param webConfigToRoleTypeMapping The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyDeletedException When the entity has already been deleted. (not found) @@ -936,14 +936,14 @@ public abstract class BsWebConfigToRoleTypeMappingBhv extends * Batch-update the entity list. (SpecifiedColumnsUpdated, NonExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * webConfigToRoleTypeMappingBhv.batchUpdate(webConfigToRoleTypeMappingList, new SpecifyQuery() {
      *     public void specify(WebConfigToRoleTypeMappingCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * webConfigToRoleTypeMappingBhv.batchUpdate(webConfigToRoleTypeMappingList, new SpecifyQuery() {
      *     public void specify(WebConfigToRoleTypeMappingCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1020,7 +1020,7 @@ public abstract class BsWebConfigToRoleTypeMappingBhv extends
      *     public ConditionBean setup(webConfigToRoleTypeMapping entity, WebConfigToRoleTypeMappingCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1031,7 +1031,7 @@ public abstract class BsWebConfigToRoleTypeMappingBhv extends
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -1317,7 +1317,7 @@ public abstract class BsWebConfigToRoleTypeMappingBhv extends
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -1333,7 +1333,7 @@ public abstract class BsWebConfigToRoleTypeMappingBhv extends * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * WebConfigToRoleTypeMapping webConfigToRoleTypeMapping = new WebConfigToRoleTypeMapping();
@@ -1394,27 +1394,27 @@ public abstract class BsWebConfigToRoleTypeMappingBhv extends
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsbhv/BsWebCrawlingConfigBhv.java b/src/main/java/jp/sf/fess/db/bsbhv/BsWebCrawlingConfigBhv.java index 91ca33cb2..cc31f2490 100644 --- a/src/main/java/jp/sf/fess/db/bsbhv/BsWebCrawlingConfigBhv.java +++ b/src/main/java/jp/sf/fess/db/bsbhv/BsWebCrawlingConfigBhv.java @@ -56,28 +56,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor; *
  * [primary key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, URLS, INCLUDED_URLS, EXCLUDED_URLS, INCLUDED_DOC_URLS, EXCLUDED_DOC_URLS, CONFIG_PARAMETER, DEPTH, MAX_ACCESS_COUNT, USER_AGENT, NUM_OF_THREAD, INTERVAL_TIME, BOOST, AVAILABLE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     REQUEST_HEADER, WEB_AUTHENTICATION, WEB_CONFIG_TO_LABEL_TYPE_MAPPING, WEB_CONFIG_TO_ROLE_TYPE_MAPPING
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     requestHeaderList, webAuthenticationList, webConfigToLabelTypeMappingList, webConfigToRoleTypeMappingList
  * 
@@ -157,7 +157,7 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable { return doSelectCountUniquely(cb); } - protected int doSelectCountUniquely(final WebCrawlingConfigCB cb) { // called by selectCount(cb) + protected int doSelectCountUniquely(final WebCrawlingConfigCB cb) { // called by selectCount(cb) assertCBStateValid(cb); return delegateSelectCountUniquely(cb); } @@ -1114,7 +1114,7 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable { * webCrawlingConfigBhv.update(webCrawlingConfig); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } *
* @param webCrawlingConfig The entity of update target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1340,7 +1340,7 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable { * webCrawlingConfigBhv.delete(webCrawlingConfig); * } catch (EntityAlreadyUpdatedException e) { // if concurrent update * ... - * } + * } * * @param webCrawlingConfig The entity of delete target. (NotNull, PrimaryKeyNotNull, ConcurrencyColumnRequired) * @exception org.seasar.dbflute.exception.EntityAlreadyUpdatedException When the entity has already been updated. @@ -1550,14 +1550,14 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable { * Batch-update the entity list. (SpecifiedColumnsUpdated, ExclusiveControl)
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * webCrawlingConfigBhv.batchUpdate(webCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(WebCrawlingConfigCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * webCrawlingConfigBhv.batchUpdate(webCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(WebCrawlingConfigCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1616,14 +1616,14 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable {
      * Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) 
* This method uses executeBatch() of java.sql.PreparedStatement. *
-     * // e.g. update two columns only 
+     * // e.g. update two columns only
      * webCrawlingConfigBhv.batchUpdateNonstrict(webCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(WebCrawlingConfigCB cb) { // the two only updated
      *         cb.specify().columnFooStatusCode(); // should be modified in any entities
      *         cb.specify().columnBarDate(); // should be modified in any entities
      *     }
      * });
-     * // e.g. update every column in the table 
+     * // e.g. update every column in the table
      * webCrawlingConfigBhv.batchUpdateNonstrict(webCrawlingConfigList, new SpecifyQuery() {
      *     public void specify(WebCrawlingConfigCB cb) { // all columns are updated
      *         cb.specify().columnEveryColumn(); // no check of modified properties
@@ -1725,7 +1725,7 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable {
      *     public ConditionBean setup(webCrawlingConfig entity, WebCrawlingConfigCB intoCB) {
      *         FooCB cb = FooCB();
      *         cb.setupSelect_Bar();
-     * 
+     *
      *         // mapping
      *         intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
      *         intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@@ -1736,7 +1736,7 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable {
      *         //entity.set...;
      *         // you don't need to set a value of exclusive control column
      *         //entity.setVersionNo(value);
-     * 
+     *
      *         return cb;
      *     }
      * });
@@ -2114,7 +2114,7 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable {
     /**
      * Insert the several entities by query with varying requests (modified-only for fixed value). 
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity().
- * Other specifications are same as queryInsert(entity, setupper). + * Other specifications are same as queryInsert(entity, setupper). * @param setupper The setup-per of query-insert. (NotNull) * @param option The option of insert for varying requests. (NotNull) * @return The inserted count. @@ -2130,7 +2130,7 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable { * Update the several entities by query with varying requests non-strictly modified-only. {NonExclusiveControl}
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification) * , disableCommonColumnAutoSetup(), allowNonQueryUpdate().
- * Other specifications are same as queryUpdate(entity, cb). + * Other specifications are same as queryUpdate(entity, cb). *
      * // ex) you can update by self calculation values
      * WebCrawlingConfig webCrawlingConfig = new WebCrawlingConfig();
@@ -2190,27 +2190,27 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable {
      *   o selectList()
      *   o execute()
      *   o call()
-     * 
+     *
      * {Entity}
      *   o entityHandling().selectEntity()
      *   o entityHandling().selectEntityWithDeletedCheck()
-     * 
+     *
      * {Paging}
      *   o autoPaging().selectList()
      *   o autoPaging().selectPage()
      *   o manualPaging().selectList()
      *   o manualPaging().selectPage()
-     * 
+     *
      * {Cursor}
      *   o cursorHandling().selectCursor()
-     * 
+     *
      * {Option}
      *   o dynamicBinding().selectList()
      *   o removeBlockComment().selectList()
      *   o removeLineComment().selectList()
      *   o formatSql().selectList()
      * 
- * @return The basic executor of outside-SQL. (NotNull) + * @return The basic executor of outside-SQL. (NotNull) */ public OutsideSqlBasicExecutor outsideSql() { return doOutsideSql(); diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsClickLog.java b/src/main/java/jp/sf/fess/db/bsentity/BsClickLog.java index 8764443ba..9c40fc45d 100644 --- a/src/main/java/jp/sf/fess/db/bsentity/BsClickLog.java +++ b/src/main/java/jp/sf/fess/db/bsentity/BsClickLog.java @@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta; *
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, SEARCH_ID, URL, REQUESTED_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     SEARCH_LOG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     searchLog
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -331,7 +331,7 @@ public abstract class BsClickLog implements Entity, Serializable, Cloneable {
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsCrawlingSession.java b/src/main/java/jp/sf/fess/db/bsentity/BsCrawlingSession.java
index 5c58cd2d5..d0e7b11c3 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsCrawlingSession.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsCrawlingSession.java
@@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, SESSION_ID, NAME, EXPIRED_TIME, CREATED_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     CRAWLING_SESSION_INFO
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     crawlingSessionInfoList
- * 
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -347,7 +347,7 @@ public abstract class BsCrawlingSession implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsCrawlingSessionInfo.java b/src/main/java/jp/sf/fess/db/bsentity/BsCrawlingSessionInfo.java
index cc5cd7afe..1acb30bbc 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsCrawlingSessionInfo.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsCrawlingSessionInfo.java
@@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, CRAWLING_SESSION_ID, KEY, VALUE, CREATED_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     CRAWLING_SESSION
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     crawlingSession
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -338,7 +338,7 @@ public abstract class BsCrawlingSessionInfo implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsDataConfigToLabelTypeMapping.java b/src/main/java/jp/sf/fess/db/bsentity/BsDataConfigToLabelTypeMapping.java
index 9c4b73416..6993fe6d7 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsDataConfigToLabelTypeMapping.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsDataConfigToLabelTypeMapping.java
@@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, DATA_CONFIG_ID, LABEL_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     DATA_CRAWLING_CONFIG, LABEL_TYPE
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     dataCrawlingConfig, labelType
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -354,7 +354,7 @@ public abstract class BsDataConfigToLabelTypeMapping implements Entity,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsDataConfigToRoleTypeMapping.java b/src/main/java/jp/sf/fess/db/bsentity/BsDataConfigToRoleTypeMapping.java
index efa6bcb40..7c40e4382 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsDataConfigToRoleTypeMapping.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsDataConfigToRoleTypeMapping.java
@@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, DATA_CONFIG_ID, ROLE_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     DATA_CRAWLING_CONFIG, ROLE_TYPE
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     dataCrawlingConfig, roleType
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -354,7 +354,7 @@ public abstract class BsDataConfigToRoleTypeMapping implements Entity,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsDataCrawlingConfig.java b/src/main/java/jp/sf/fess/db/bsentity/BsDataCrawlingConfig.java
index cfd896aa4..d85540f1c 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsDataCrawlingConfig.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsDataCrawlingConfig.java
@@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, HANDLER_NAME, HANDLER_PARAMETER, HANDLER_SCRIPT, BOOST, AVAILABLE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     DATA_CONFIG_TO_LABEL_TYPE_MAPPING, DATA_CONFIG_TO_ROLE_TYPE_MAPPING
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     dataConfigToLabelTypeMappingList, dataConfigToRoleTypeMappingList
- * 
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -444,7 +444,7 @@ public abstract class BsDataCrawlingConfig implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsFailureUrl.java b/src/main/java/jp/sf/fess/db/bsentity/BsFailureUrl.java
index 8cb0670a4..d97656e78 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsFailureUrl.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsFailureUrl.java
@@ -32,31 +32,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, URL, THREAD_NAME, ERROR_NAME, ERROR_LOG, ERROR_COUNT, LAST_ACCESS_TIME, CONFIG_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -319,7 +319,7 @@ public abstract class BsFailureUrl implements Entity, Serializable, Cloneable {
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsFavoriteLog.java b/src/main/java/jp/sf/fess/db/bsentity/BsFavoriteLog.java
index 41cbfb52a..35f1995bf 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsFavoriteLog.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsFavoriteLog.java
@@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, USER_ID, URL, CREATED_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     USER_INFO
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     userInfo
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -331,7 +331,7 @@ public abstract class BsFavoriteLog implements Entity, Serializable, Cloneable {
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsFileAuthentication.java b/src/main/java/jp/sf/fess/db/bsentity/BsFileAuthentication.java
index 31e52d134..8011b1b61 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsFileAuthentication.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsFileAuthentication.java
@@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, HOSTNAME, PORT, PROTOCOL_SCHEME, USERNAME, PASSWORD, PARAMETERS, FILE_CRAWLING_CONFIG_ID, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
  *     FILE_CRAWLING_CONFIG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     fileCrawlingConfig
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -400,7 +400,7 @@ public abstract class BsFileAuthentication implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsFileConfigToLabelTypeMapping.java b/src/main/java/jp/sf/fess/db/bsentity/BsFileConfigToLabelTypeMapping.java
index 91cc1152b..c0add8f2d 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsFileConfigToLabelTypeMapping.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsFileConfigToLabelTypeMapping.java
@@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, FILE_CONFIG_ID, LABEL_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     LABEL_TYPE, FILE_CRAWLING_CONFIG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     labelType, fileCrawlingConfig
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -354,7 +354,7 @@ public abstract class BsFileConfigToLabelTypeMapping implements Entity,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsFileConfigToRoleTypeMapping.java b/src/main/java/jp/sf/fess/db/bsentity/BsFileConfigToRoleTypeMapping.java
index 1efe6220b..a2c893c82 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsFileConfigToRoleTypeMapping.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsFileConfigToRoleTypeMapping.java
@@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, FILE_CONFIG_ID, ROLE_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     FILE_CRAWLING_CONFIG, ROLE_TYPE
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     fileCrawlingConfig, roleType
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -354,7 +354,7 @@ public abstract class BsFileConfigToRoleTypeMapping implements Entity,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsFileCrawlingConfig.java b/src/main/java/jp/sf/fess/db/bsentity/BsFileCrawlingConfig.java
index 23ebe52f6..70b358a33 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsFileCrawlingConfig.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsFileCrawlingConfig.java
@@ -35,31 +35,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, PATHS, INCLUDED_PATHS, EXCLUDED_PATHS, INCLUDED_DOC_PATHS, EXCLUDED_DOC_PATHS, CONFIG_PARAMETER, DEPTH, MAX_ACCESS_COUNT, NUM_OF_THREAD, INTERVAL_TIME, BOOST, AVAILABLE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     FILE_AUTHENTICATION, FILE_CONFIG_TO_LABEL_TYPE_MAPPING, FILE_CONFIG_TO_ROLE_TYPE_MAPPING
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     fileAuthenticationList, fileConfigToLabelTypeMappingList, fileConfigToRoleTypeMappingList
- * 
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -521,7 +521,7 @@ public abstract class BsFileCrawlingConfig implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsJobLog.java b/src/main/java/jp/sf/fess/db/bsentity/BsJobLog.java
index 05391338c..14e7f6034 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsJobLog.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsJobLog.java
@@ -32,31 +32,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, JOB_NAME, JOB_STATUS, TARGET, SCRIPT_TYPE, SCRIPT_DATA, SCRIPT_RESULT, START_TIME, END_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -325,7 +325,7 @@ public abstract class BsJobLog implements Entity, Serializable, Cloneable {
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsLabelType.java b/src/main/java/jp/sf/fess/db/bsentity/BsLabelType.java
index ca805fc3b..c29dd25a7 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsLabelType.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsLabelType.java
@@ -36,31 +36,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, VALUE, INCLUDED_PATHS, EXCLUDED_PATHS, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     DATA_CONFIG_TO_LABEL_TYPE_MAPPING, FILE_CONFIG_TO_LABEL_TYPE_MAPPING, LABEL_TYPE_TO_ROLE_TYPE_MAPPING, WEB_CONFIG_TO_LABEL_TYPE_MAPPING
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     dataConfigToLabelTypeMappingList, fileConfigToLabelTypeMappingList, labelTypeToRoleTypeMappingList, webConfigToLabelTypeMappingList
- * 
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -503,7 +503,7 @@ public abstract class BsLabelType implements Entity, Serializable, Cloneable {
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsLabelTypeToRoleTypeMapping.java b/src/main/java/jp/sf/fess/db/bsentity/BsLabelTypeToRoleTypeMapping.java
index bbfcca352..7c9cee9b6 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsLabelTypeToRoleTypeMapping.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsLabelTypeToRoleTypeMapping.java
@@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, LABEL_TYPE_ID, ROLE_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     LABEL_TYPE, ROLE_TYPE
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     labelType, roleType
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -352,7 +352,7 @@ public abstract class BsLabelTypeToRoleTypeMapping implements Entity,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsOverlappingHost.java b/src/main/java/jp/sf/fess/db/bsentity/BsOverlappingHost.java
index 5e860d759..8f7eaea2a 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsOverlappingHost.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsOverlappingHost.java
@@ -32,31 +32,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, REGULAR_NAME, OVERLAPPING_NAME, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -338,7 +338,7 @@ public abstract class BsOverlappingHost implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsPathMapping.java b/src/main/java/jp/sf/fess/db/bsentity/BsPathMapping.java
index 4992bd43c..1bf9f6d15 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsPathMapping.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsPathMapping.java
@@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, REGEX, REPLACEMENT, PROCESS_TYPE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -443,7 +443,7 @@ public abstract class BsPathMapping implements Entity, Serializable, Cloneable {
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsRequestHeader.java b/src/main/java/jp/sf/fess/db/bsentity/BsRequestHeader.java
index dbf733f8e..f41f19e92 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsRequestHeader.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsRequestHeader.java
@@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, VALUE, WEB_CRAWLING_CONFIG_ID, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
  *     WEB_CRAWLING_CONFIG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     webCrawlingConfig
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -374,7 +374,7 @@ public abstract class BsRequestHeader implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsRoleType.java b/src/main/java/jp/sf/fess/db/bsentity/BsRoleType.java
index 7843b568f..108946602 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsRoleType.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsRoleType.java
@@ -36,31 +36,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, VALUE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     DATA_CONFIG_TO_ROLE_TYPE_MAPPING, FILE_CONFIG_TO_ROLE_TYPE_MAPPING, LABEL_TYPE_TO_ROLE_TYPE_MAPPING, WEB_CONFIG_TO_ROLE_TYPE_MAPPING
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     dataConfigToRoleTypeMappingList, fileConfigToRoleTypeMappingList, labelTypeToRoleTypeMappingList, webConfigToRoleTypeMappingList
- * 
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -491,7 +491,7 @@ public abstract class BsRoleType implements Entity, Serializable, Cloneable {
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsScheduledJob.java b/src/main/java/jp/sf/fess/db/bsentity/BsScheduledJob.java
index a07a5aa72..f981fd05d 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsScheduledJob.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsScheduledJob.java
@@ -32,31 +32,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, TARGET, CRON_EXPRESSION, SCRIPT_TYPE, SCRIPT_DATA, CRAWLER, JOB_LOGGING, AVAILABLE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -373,7 +373,7 @@ public abstract class BsScheduledJob implements Entity, Serializable, Cloneable
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsSearchFieldLog.java b/src/main/java/jp/sf/fess/db/bsentity/BsSearchFieldLog.java
index 409d1c867..93217cbe8 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsSearchFieldLog.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsSearchFieldLog.java
@@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, SEARCH_ID, NAME, VALUE
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     SEARCH_LOG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     searchLog
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -332,7 +332,7 @@ public abstract class BsSearchFieldLog implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsSearchLog.java b/src/main/java/jp/sf/fess/db/bsentity/BsSearchLog.java
index 01bf36b31..95b66c4c1 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsSearchLog.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsSearchLog.java
@@ -36,31 +36,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, SEARCH_WORD, REQUESTED_TIME, RESPONSE_TIME, HIT_COUNT, QUERY_OFFSET, QUERY_PAGE_SIZE, USER_AGENT, REFERER, CLIENT_IP, USER_SESSION_ID, ACCESS_TYPE, USER_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     USER_INFO
- * 
+ *
  * [referrer table]
  *     CLICK_LOG, SEARCH_FIELD_LOG
- * 
+ *
  * [foreign property]
  *     userInfo
- * 
+ *
  * [referrer property]
  *     clickLogList, searchFieldLogList
- * 
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -571,7 +571,7 @@ public abstract class BsSearchLog implements Entity, Serializable, Cloneable {
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsUserInfo.java b/src/main/java/jp/sf/fess/db/bsentity/BsUserInfo.java
index 01acc4186..a03f32eef 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsUserInfo.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsUserInfo.java
@@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, CODE, CREATED_TIME, UPDATED_TIME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     FAVORITE_LOG, SEARCH_LOG
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     favoriteLogList, searchLogList
- * 
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -371,7 +371,7 @@ public abstract class BsUserInfo implements Entity, Serializable, Cloneable {
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsWebAuthentication.java b/src/main/java/jp/sf/fess/db/bsentity/BsWebAuthentication.java
index 69d7585d8..a6e5ee213 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsWebAuthentication.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsWebAuthentication.java
@@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, HOSTNAME, PORT, AUTH_REALM, PROTOCOL_SCHEME, USERNAME, PASSWORD, PARAMETERS, WEB_CRAWLING_CONFIG_ID, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
  *     WEB_CRAWLING_CONFIG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     webCrawlingConfig
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -404,7 +404,7 @@ public abstract class BsWebAuthentication implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsWebConfigToLabelTypeMapping.java b/src/main/java/jp/sf/fess/db/bsentity/BsWebConfigToLabelTypeMapping.java
index 2e91ec527..4fd39b8d4 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsWebConfigToLabelTypeMapping.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsWebConfigToLabelTypeMapping.java
@@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, WEB_CONFIG_ID, LABEL_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     LABEL_TYPE, WEB_CRAWLING_CONFIG
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     labelType, webCrawlingConfig
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -352,7 +352,7 @@ public abstract class BsWebConfigToLabelTypeMapping implements Entity,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsWebConfigToRoleTypeMapping.java b/src/main/java/jp/sf/fess/db/bsentity/BsWebConfigToRoleTypeMapping.java
index 3aa10cdfe..146c27009 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsWebConfigToRoleTypeMapping.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsWebConfigToRoleTypeMapping.java
@@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, WEB_CONFIG_ID, ROLE_TYPE_ID
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
  *     WEB_CRAWLING_CONFIG, ROLE_TYPE
- * 
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
  *     webCrawlingConfig, roleType
- * 
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -352,7 +352,7 @@ public abstract class BsWebConfigToRoleTypeMapping implements Entity,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/BsWebCrawlingConfig.java b/src/main/java/jp/sf/fess/db/bsentity/BsWebCrawlingConfig.java
index 4d25f0cae..56f4b2273 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/BsWebCrawlingConfig.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/BsWebCrawlingConfig.java
@@ -36,31 +36,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * 
  * [primary-key]
  *     ID
- * 
+ *
  * [column]
  *     ID, NAME, URLS, INCLUDED_URLS, EXCLUDED_URLS, INCLUDED_DOC_URLS, EXCLUDED_DOC_URLS, CONFIG_PARAMETER, DEPTH, MAX_ACCESS_COUNT, USER_AGENT, NUM_OF_THREAD, INTERVAL_TIME, BOOST, AVAILABLE, SORT_ORDER, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETED_BY, DELETED_TIME, VERSION_NO
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
  *     ID
- * 
+ *
  * [version-no]
  *     VERSION_NO
- * 
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
  *     REQUEST_HEADER, WEB_AUTHENTICATION, WEB_CONFIG_TO_LABEL_TYPE_MAPPING, WEB_CONFIG_TO_ROLE_TYPE_MAPPING
- * 
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
  *     requestHeaderList, webAuthenticationList, webConfigToLabelTypeMappingList, webConfigToRoleTypeMappingList
- * 
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * Long id = entity.getId();
@@ -559,7 +559,7 @@ public abstract class BsWebCrawlingConfig implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsClickUrlRanking.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsClickUrlRanking.java
index 1dcc27906..d8a182a2b 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsClickUrlRanking.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsClickUrlRanking.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of ClickUrlRanking. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME, CNT
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -285,7 +285,7 @@ public abstract class BsClickUrlRanking implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsClientIpRanking.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsClientIpRanking.java
index eb608710e..445edff9b 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsClientIpRanking.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsClientIpRanking.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of ClientIpRanking. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME, CNT
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -285,7 +285,7 @@ public abstract class BsClientIpRanking implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsFavoriteUrlCount.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsFavoriteUrlCount.java
index 3023b1cbf..b8617d321 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsFavoriteUrlCount.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsFavoriteUrlCount.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of FavoriteUrlCount. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME, CNT
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -285,7 +285,7 @@ public abstract class BsFavoriteUrlCount implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsFavoriteUrlRanking.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsFavoriteUrlRanking.java
index d74641453..1cdbf9607 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsFavoriteUrlRanking.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsFavoriteUrlRanking.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of FavoriteUrlRanking. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME, CNT
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -285,7 +285,7 @@ public abstract class BsFavoriteUrlRanking implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsGroupedFieldName.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsGroupedFieldName.java
index c6c7e2bd7..a0f83fd76 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsGroupedFieldName.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsGroupedFieldName.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of GroupedFieldName. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -275,7 +275,7 @@ public abstract class BsGroupedFieldName implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsHotSearchWord.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsHotSearchWord.java
index 357b7cb30..5fc3596ea 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsHotSearchWord.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsHotSearchWord.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of HotSearchWord. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -275,7 +275,7 @@ public abstract class BsHotSearchWord implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsRefererRanking.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsRefererRanking.java
index 18850d8dc..5d1ce7047 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsRefererRanking.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsRefererRanking.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of RefererRanking. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME, CNT
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -285,7 +285,7 @@ public abstract class BsRefererRanking implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchFieldRanking.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchFieldRanking.java
index 8131a8883..597a947ec 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchFieldRanking.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchFieldRanking.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of SearchFieldRanking. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME, CNT
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -285,7 +285,7 @@ public abstract class BsSearchFieldRanking implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchQueryRanking.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchQueryRanking.java
index b6aae8201..88974820d 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchQueryRanking.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchQueryRanking.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of SearchQueryRanking. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME, CNT
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -285,7 +285,7 @@ public abstract class BsSearchQueryRanking implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchWordRanking.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchWordRanking.java
index ba90a58ae..ea5751370 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchWordRanking.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsSearchWordRanking.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of SearchWordRanking. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME, CNT
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -285,7 +285,7 @@ public abstract class BsSearchWordRanking implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsSolrQueryRanking.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsSolrQueryRanking.java
index 7e87393d4..7866d708b 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsSolrQueryRanking.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsSolrQueryRanking.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of SolrQueryRanking. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME, CNT
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -285,7 +285,7 @@ public abstract class BsSolrQueryRanking implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/bsentity/customize/BsUserAgentRanking.java b/src/main/java/jp/sf/fess/db/bsentity/customize/BsUserAgentRanking.java
index 881fea5d6..b68fd3372 100644
--- a/src/main/java/jp/sf/fess/db/bsentity/customize/BsUserAgentRanking.java
+++ b/src/main/java/jp/sf/fess/db/bsentity/customize/BsUserAgentRanking.java
@@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
  * The entity of UserAgentRanking. 
*
  * [primary-key]
- *     
- * 
+ *
+ *
  * [column]
  *     NAME, CNT
- * 
+ *
  * [sequence]
- *     
- * 
+ *
+ *
  * [identity]
- *     
- * 
+ *
+ *
  * [version-no]
- *     
- * 
+ *
+ *
  * [foreign table]
- *     
- * 
+ *
+ *
  * [referrer table]
- *     
- * 
+ *
+ *
  * [foreign property]
- *     
- * 
+ *
+ *
  * [referrer property]
- *     
- * 
+ *
+ *
  * [get/set template]
  * /= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  * String name = entity.getName();
@@ -285,7 +285,7 @@ public abstract class BsUserAgentRanking implements Entity, Serializable,
     }
 
     /**
-     * Clone entity instance using super.clone(). (shallow copy) 
+     * Clone entity instance using super.clone(). (shallow copy)
      * @return The cloned instance of this entity. (NotNull)
      */
     @Override
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsClickLogCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsClickLogCB.java
index 860779ec2..fa97a08a3 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsClickLogCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsClickLogCB.java
@@ -156,7 +156,7 @@ public class BsClickLogCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -165,7 +165,7 @@ public class BsClickLogCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -174,7 +174,7 @@ public class BsClickLogCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -182,7 +182,7 @@ public class BsClickLogCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -190,14 +190,14 @@ public class BsClickLogCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -205,7 +205,7 @@ public class BsClickLogCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public ClickLogCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsCrawlingSessionCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsCrawlingSessionCB.java
index 1afabde0c..765e1f73e 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsCrawlingSessionCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsCrawlingSessionCB.java
@@ -154,7 +154,7 @@ public class BsCrawlingSessionCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -163,7 +163,7 @@ public class BsCrawlingSessionCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -172,7 +172,7 @@ public class BsCrawlingSessionCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -180,7 +180,7 @@ public class BsCrawlingSessionCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -188,14 +188,14 @@ public class BsCrawlingSessionCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -203,7 +203,7 @@ public class BsCrawlingSessionCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public CrawlingSessionCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsCrawlingSessionInfoCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsCrawlingSessionInfoCB.java
index b3abf0bef..6fd4cd5d9 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsCrawlingSessionInfoCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsCrawlingSessionInfoCB.java
@@ -156,7 +156,7 @@ public class BsCrawlingSessionInfoCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -165,7 +165,7 @@ public class BsCrawlingSessionInfoCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -174,7 +174,7 @@ public class BsCrawlingSessionInfoCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -182,7 +182,7 @@ public class BsCrawlingSessionInfoCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -190,14 +190,14 @@ public class BsCrawlingSessionInfoCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -205,7 +205,7 @@ public class BsCrawlingSessionInfoCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public CrawlingSessionInfoCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsDataConfigToLabelTypeMappingCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsDataConfigToLabelTypeMappingCB.java
index 012e76d0c..639f37816 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsDataConfigToLabelTypeMappingCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsDataConfigToLabelTypeMappingCB.java
@@ -159,7 +159,7 @@ public class BsDataConfigToLabelTypeMappingCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -168,7 +168,7 @@ public class BsDataConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -177,7 +177,7 @@ public class BsDataConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -185,7 +185,7 @@ public class BsDataConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -193,14 +193,14 @@ public class BsDataConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -208,7 +208,7 @@ public class BsDataConfigToLabelTypeMappingCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public DataConfigToLabelTypeMappingCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsDataConfigToRoleTypeMappingCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsDataConfigToRoleTypeMappingCB.java
index 92e84abc1..d00b7a3c1 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsDataConfigToRoleTypeMappingCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsDataConfigToRoleTypeMappingCB.java
@@ -159,7 +159,7 @@ public class BsDataConfigToRoleTypeMappingCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -168,7 +168,7 @@ public class BsDataConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -177,7 +177,7 @@ public class BsDataConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -185,7 +185,7 @@ public class BsDataConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -193,14 +193,14 @@ public class BsDataConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -208,7 +208,7 @@ public class BsDataConfigToRoleTypeMappingCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public DataConfigToRoleTypeMappingCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsDataCrawlingConfigCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsDataCrawlingConfigCB.java
index dcc25a7d4..621c6c7be 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsDataCrawlingConfigCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsDataCrawlingConfigCB.java
@@ -155,7 +155,7 @@ public class BsDataCrawlingConfigCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -164,7 +164,7 @@ public class BsDataCrawlingConfigCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -173,7 +173,7 @@ public class BsDataCrawlingConfigCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -181,7 +181,7 @@ public class BsDataCrawlingConfigCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -189,14 +189,14 @@ public class BsDataCrawlingConfigCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -204,7 +204,7 @@ public class BsDataCrawlingConfigCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public DataCrawlingConfigCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsFailureUrlCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsFailureUrlCB.java
index 98e3fe4f2..74a9df4eb 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsFailureUrlCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsFailureUrlCB.java
@@ -153,7 +153,7 @@ public class BsFailureUrlCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -162,7 +162,7 @@ public class BsFailureUrlCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -171,7 +171,7 @@ public class BsFailureUrlCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -179,7 +179,7 @@ public class BsFailureUrlCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -187,14 +187,14 @@ public class BsFailureUrlCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -202,7 +202,7 @@ public class BsFailureUrlCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public FailureUrlCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsFavoriteLogCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsFavoriteLogCB.java
index 145d1e5c8..133d6cfbe 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsFavoriteLogCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsFavoriteLogCB.java
@@ -156,7 +156,7 @@ public class BsFavoriteLogCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -165,7 +165,7 @@ public class BsFavoriteLogCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -174,7 +174,7 @@ public class BsFavoriteLogCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -182,7 +182,7 @@ public class BsFavoriteLogCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -190,14 +190,14 @@ public class BsFavoriteLogCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -205,7 +205,7 @@ public class BsFavoriteLogCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public FavoriteLogCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsFileAuthenticationCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsFileAuthenticationCB.java
index c6855b77c..ef4a59d0f 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsFileAuthenticationCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsFileAuthenticationCB.java
@@ -156,7 +156,7 @@ public class BsFileAuthenticationCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -165,7 +165,7 @@ public class BsFileAuthenticationCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -174,7 +174,7 @@ public class BsFileAuthenticationCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -182,7 +182,7 @@ public class BsFileAuthenticationCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -190,14 +190,14 @@ public class BsFileAuthenticationCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -205,7 +205,7 @@ public class BsFileAuthenticationCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public FileAuthenticationCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsFileConfigToLabelTypeMappingCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsFileConfigToLabelTypeMappingCB.java
index 5c0552dc9..3683e6684 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsFileConfigToLabelTypeMappingCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsFileConfigToLabelTypeMappingCB.java
@@ -159,7 +159,7 @@ public class BsFileConfigToLabelTypeMappingCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -168,7 +168,7 @@ public class BsFileConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -177,7 +177,7 @@ public class BsFileConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -185,7 +185,7 @@ public class BsFileConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -193,14 +193,14 @@ public class BsFileConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -208,7 +208,7 @@ public class BsFileConfigToLabelTypeMappingCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public FileConfigToLabelTypeMappingCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsFileConfigToRoleTypeMappingCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsFileConfigToRoleTypeMappingCB.java
index 419f4134b..864a54ccc 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsFileConfigToRoleTypeMappingCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsFileConfigToRoleTypeMappingCB.java
@@ -159,7 +159,7 @@ public class BsFileConfigToRoleTypeMappingCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -168,7 +168,7 @@ public class BsFileConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -177,7 +177,7 @@ public class BsFileConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -185,7 +185,7 @@ public class BsFileConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -193,14 +193,14 @@ public class BsFileConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -208,7 +208,7 @@ public class BsFileConfigToRoleTypeMappingCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public FileConfigToRoleTypeMappingCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsFileCrawlingConfigCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsFileCrawlingConfigCB.java
index f227aead4..f5a268488 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsFileCrawlingConfigCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsFileCrawlingConfigCB.java
@@ -156,7 +156,7 @@ public class BsFileCrawlingConfigCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -165,7 +165,7 @@ public class BsFileCrawlingConfigCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -174,7 +174,7 @@ public class BsFileCrawlingConfigCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -182,7 +182,7 @@ public class BsFileCrawlingConfigCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -190,14 +190,14 @@ public class BsFileCrawlingConfigCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -205,7 +205,7 @@ public class BsFileCrawlingConfigCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public FileCrawlingConfigCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsJobLogCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsJobLogCB.java
index 64e368f63..22e49f816 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsJobLogCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsJobLogCB.java
@@ -153,7 +153,7 @@ public class BsJobLogCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -162,7 +162,7 @@ public class BsJobLogCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -171,7 +171,7 @@ public class BsJobLogCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -179,7 +179,7 @@ public class BsJobLogCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -187,14 +187,14 @@ public class BsJobLogCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -202,7 +202,7 @@ public class BsJobLogCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public JobLogCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsLabelTypeCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsLabelTypeCB.java
index 3967b2848..69725e8dd 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsLabelTypeCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsLabelTypeCB.java
@@ -157,7 +157,7 @@ public class BsLabelTypeCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -166,7 +166,7 @@ public class BsLabelTypeCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -175,7 +175,7 @@ public class BsLabelTypeCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -183,7 +183,7 @@ public class BsLabelTypeCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -191,14 +191,14 @@ public class BsLabelTypeCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -206,7 +206,7 @@ public class BsLabelTypeCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public LabelTypeCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsLabelTypeToRoleTypeMappingCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsLabelTypeToRoleTypeMappingCB.java
index b426b3dcf..bd131ff88 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsLabelTypeToRoleTypeMappingCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsLabelTypeToRoleTypeMappingCB.java
@@ -159,7 +159,7 @@ public class BsLabelTypeToRoleTypeMappingCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -168,7 +168,7 @@ public class BsLabelTypeToRoleTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -177,7 +177,7 @@ public class BsLabelTypeToRoleTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -185,7 +185,7 @@ public class BsLabelTypeToRoleTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -193,14 +193,14 @@ public class BsLabelTypeToRoleTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -208,7 +208,7 @@ public class BsLabelTypeToRoleTypeMappingCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public LabelTypeToRoleTypeMappingCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsOverlappingHostCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsOverlappingHostCB.java
index 2cb5fedb7..da5178800 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsOverlappingHostCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsOverlappingHostCB.java
@@ -153,7 +153,7 @@ public class BsOverlappingHostCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -162,7 +162,7 @@ public class BsOverlappingHostCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -171,7 +171,7 @@ public class BsOverlappingHostCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -179,7 +179,7 @@ public class BsOverlappingHostCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -187,14 +187,14 @@ public class BsOverlappingHostCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -202,7 +202,7 @@ public class BsOverlappingHostCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public OverlappingHostCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsPathMappingCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsPathMappingCB.java
index e0ef3f02a..795198b2f 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsPathMappingCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsPathMappingCB.java
@@ -153,7 +153,7 @@ public class BsPathMappingCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -162,7 +162,7 @@ public class BsPathMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -171,7 +171,7 @@ public class BsPathMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -179,7 +179,7 @@ public class BsPathMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -187,14 +187,14 @@ public class BsPathMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -202,7 +202,7 @@ public class BsPathMappingCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public PathMappingCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsRequestHeaderCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsRequestHeaderCB.java
index e1740dab4..7928f9152 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsRequestHeaderCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsRequestHeaderCB.java
@@ -156,7 +156,7 @@ public class BsRequestHeaderCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -165,7 +165,7 @@ public class BsRequestHeaderCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -174,7 +174,7 @@ public class BsRequestHeaderCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -182,7 +182,7 @@ public class BsRequestHeaderCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -190,14 +190,14 @@ public class BsRequestHeaderCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -205,7 +205,7 @@ public class BsRequestHeaderCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public RequestHeaderCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsRoleTypeCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsRoleTypeCB.java
index 3f9ecb3a2..5efb47220 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsRoleTypeCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsRoleTypeCB.java
@@ -157,7 +157,7 @@ public class BsRoleTypeCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -166,7 +166,7 @@ public class BsRoleTypeCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -175,7 +175,7 @@ public class BsRoleTypeCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -183,7 +183,7 @@ public class BsRoleTypeCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -191,14 +191,14 @@ public class BsRoleTypeCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -206,7 +206,7 @@ public class BsRoleTypeCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public RoleTypeCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsScheduledJobCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsScheduledJobCB.java
index ac3197893..0e05980bc 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsScheduledJobCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsScheduledJobCB.java
@@ -153,7 +153,7 @@ public class BsScheduledJobCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -162,7 +162,7 @@ public class BsScheduledJobCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -171,7 +171,7 @@ public class BsScheduledJobCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -179,7 +179,7 @@ public class BsScheduledJobCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -187,14 +187,14 @@ public class BsScheduledJobCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -202,7 +202,7 @@ public class BsScheduledJobCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public ScheduledJobCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsSearchFieldLogCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsSearchFieldLogCB.java
index ef5271089..a1f1a6ba4 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsSearchFieldLogCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsSearchFieldLogCB.java
@@ -156,7 +156,7 @@ public class BsSearchFieldLogCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -165,7 +165,7 @@ public class BsSearchFieldLogCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -174,7 +174,7 @@ public class BsSearchFieldLogCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -182,7 +182,7 @@ public class BsSearchFieldLogCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -190,14 +190,14 @@ public class BsSearchFieldLogCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -205,7 +205,7 @@ public class BsSearchFieldLogCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public SearchFieldLogCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsSearchLogCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsSearchLogCB.java
index 0d73508a1..5d275219b 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsSearchLogCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsSearchLogCB.java
@@ -158,7 +158,7 @@ public class BsSearchLogCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -167,7 +167,7 @@ public class BsSearchLogCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -176,7 +176,7 @@ public class BsSearchLogCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -184,7 +184,7 @@ public class BsSearchLogCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -192,14 +192,14 @@ public class BsSearchLogCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -207,7 +207,7 @@ public class BsSearchLogCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public SearchLogCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsUserInfoCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsUserInfoCB.java
index 95069678d..0e360b0c5 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsUserInfoCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsUserInfoCB.java
@@ -155,7 +155,7 @@ public class BsUserInfoCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -164,7 +164,7 @@ public class BsUserInfoCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -173,7 +173,7 @@ public class BsUserInfoCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -181,7 +181,7 @@ public class BsUserInfoCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -189,14 +189,14 @@ public class BsUserInfoCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -204,7 +204,7 @@ public class BsUserInfoCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public UserInfoCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsWebAuthenticationCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsWebAuthenticationCB.java
index 62d102326..9427f5dc7 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsWebAuthenticationCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsWebAuthenticationCB.java
@@ -156,7 +156,7 @@ public class BsWebAuthenticationCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -165,7 +165,7 @@ public class BsWebAuthenticationCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -174,7 +174,7 @@ public class BsWebAuthenticationCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -182,7 +182,7 @@ public class BsWebAuthenticationCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -190,14 +190,14 @@ public class BsWebAuthenticationCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -205,7 +205,7 @@ public class BsWebAuthenticationCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public WebAuthenticationCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsWebConfigToLabelTypeMappingCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsWebConfigToLabelTypeMappingCB.java
index 0b0deabbf..ae94eb133 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsWebConfigToLabelTypeMappingCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsWebConfigToLabelTypeMappingCB.java
@@ -159,7 +159,7 @@ public class BsWebConfigToLabelTypeMappingCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -168,7 +168,7 @@ public class BsWebConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -177,7 +177,7 @@ public class BsWebConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -185,7 +185,7 @@ public class BsWebConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -193,14 +193,14 @@ public class BsWebConfigToLabelTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -208,7 +208,7 @@ public class BsWebConfigToLabelTypeMappingCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public WebConfigToLabelTypeMappingCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsWebConfigToRoleTypeMappingCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsWebConfigToRoleTypeMappingCB.java
index 0ea0352e1..e2dd1e3cb 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsWebConfigToRoleTypeMappingCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsWebConfigToRoleTypeMappingCB.java
@@ -159,7 +159,7 @@ public class BsWebConfigToRoleTypeMappingCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -168,7 +168,7 @@ public class BsWebConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -177,7 +177,7 @@ public class BsWebConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -185,7 +185,7 @@ public class BsWebConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -193,14 +193,14 @@ public class BsWebConfigToRoleTypeMappingCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -208,7 +208,7 @@ public class BsWebConfigToRoleTypeMappingCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public WebConfigToRoleTypeMappingCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/bs/BsWebCrawlingConfigCB.java b/src/main/java/jp/sf/fess/db/cbean/bs/BsWebCrawlingConfigCB.java
index a4206da9b..4fe2c87ce 100644
--- a/src/main/java/jp/sf/fess/db/cbean/bs/BsWebCrawlingConfigCB.java
+++ b/src/main/java/jp/sf/fess/db/cbean/bs/BsWebCrawlingConfigCB.java
@@ -157,7 +157,7 @@ public class BsWebCrawlingConfigCB extends AbstractConditionBean {
      * cb.query().setBirthdate_DateFromTo(fromDate, toDate);
      * cb.query().setBirthdate_IsNull();    // is null
      * cb.query().setBirthdate_IsNotNull(); // is not null
-     * 
+     *
      * // ExistsReferrer: (co-related sub-query)
      * // {where exists (select PURCHASE_ID from PURCHASE where ...)}
      * cb.query().existsPurchaseList(new SubQuery<PurchaseCB>() {
@@ -166,7 +166,7 @@ public class BsWebCrawlingConfigCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notExistsPurchaseList...
-     * 
+     *
      * // InScopeRelation: (sub-query)
      * // {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}
      * cb.query().inScopeMemberStatus(new SubQuery<MemberStatusCB>() {
@@ -175,7 +175,7 @@ public class BsWebCrawlingConfigCB extends AbstractConditionBean {
      *     }
      * });
      * cb.query().notInScopeMemberStatus...
-     * 
+     *
      * // (Query)DerivedReferrer: (co-related sub-query)
      * cb.query().derivedPurchaseList().max(new SubQuery<PurchaseCB>() {
      *     public void query(PurchaseCB subCB) {
@@ -183,7 +183,7 @@ public class BsWebCrawlingConfigCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // referrer sub-query condition
      *     }
      * }).greaterEqual(value);
-     * 
+     *
      * // ScalarCondition: (self-table sub-query)
      * cb.query().scalar_Equal().max(new SubQuery<MemberCB>() {
      *     public void query(MemberCB subCB) {
@@ -191,14 +191,14 @@ public class BsWebCrawlingConfigCB extends AbstractConditionBean {
      *         subCB.query().setXxx... // scalar sub-query condition
      *     }
      * });
-     * 
+     *
      * // OrderBy
      * cb.query().addOrderBy_MemberName_Asc();
      * cb.query().addOrderBy_MemberName_Desc().withManualOrder(valueList);
      * cb.query().addOrderBy_MemberName_Desc().withNullsFirst();
      * cb.query().addOrderBy_MemberName_Desc().withNullsLast();
      * cb.query().addSpecifiedDerivedOrderBy_Desc(aliasName);
-     * 
+     *
      * // Query(Relation)
      * cb.query().queryMemberStatus()...;
      * cb.query().queryMemberAddressAsValid(targetDate)...;
@@ -206,7 +206,7 @@ public class BsWebCrawlingConfigCB extends AbstractConditionBean {
      * @return The instance of condition-query for base-point table to set up query. (NotNull)
      */
     public WebCrawlingConfigCQ query() {
-        assertQueryPurpose(); // assert only when user-public query 
+        assertQueryPurpose(); // assert only when user-public query
         return getConditionQuery();
     }
 
diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsClickLogCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsClickLogCQ.java
index 1794297fa..fe917a832 100644
--- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsClickLogCQ.java
+++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsClickLogCQ.java
@@ -115,7 +115,7 @@ public class BsClickLogCQ extends AbstractBsClickLogCQ {
         return getId();
     }
 
-    /** 
+    /**
      * Add order-by as ascend. 
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -185,7 +185,7 @@ public class BsClickLogCQ extends AbstractBsClickLogCQ { return "searchId_NotInScopeRelation_SearchLog." + key; } - /** + /** * Add order-by as ascend.
* SEARCH_ID: {IX, NotNull, BIGINT(19), FK to SEARCH_LOG} * @return this. (NotNull) @@ -219,7 +219,7 @@ public class BsClickLogCQ extends AbstractBsClickLogCQ { return getUrl(); } - /** + /** * Add order-by as ascend.
* URL: {IX, NotNull, VARCHAR(4000)} * @return this. (NotNull) @@ -253,7 +253,7 @@ public class BsClickLogCQ extends AbstractBsClickLogCQ { return getRequestedTime(); } - /** + /** * Add order-by as ascend.
* REQUESTED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsCrawlingSessionCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsCrawlingSessionCQ.java index 0335cdded..84b48ceb6 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsCrawlingSessionCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsCrawlingSessionCQ.java @@ -245,7 +245,7 @@ public class BsCrawlingSessionCQ extends AbstractBsCrawlingSessionCQ { + key; } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -279,7 +279,7 @@ public class BsCrawlingSessionCQ extends AbstractBsCrawlingSessionCQ { return getSessionId(); } - /** + /** * Add order-by as ascend.
* SESSION_ID: {NotNull, VARCHAR(20)} * @return this. (NotNull) @@ -313,7 +313,7 @@ public class BsCrawlingSessionCQ extends AbstractBsCrawlingSessionCQ { return getName(); } - /** + /** * Add order-by as ascend.
* NAME: {IX, VARCHAR(20)} * @return this. (NotNull) @@ -347,7 +347,7 @@ public class BsCrawlingSessionCQ extends AbstractBsCrawlingSessionCQ { return getExpiredTime(); } - /** + /** * Add order-by as ascend.
* EXPIRED_TIME: {IX+, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -381,7 +381,7 @@ public class BsCrawlingSessionCQ extends AbstractBsCrawlingSessionCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsCrawlingSessionInfoCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsCrawlingSessionInfoCQ.java index f66b06797..a577b186d 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsCrawlingSessionInfoCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsCrawlingSessionInfoCQ.java @@ -115,7 +115,7 @@ public class BsCrawlingSessionInfoCQ extends AbstractBsCrawlingSessionInfoCQ { return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -188,7 +188,7 @@ public class BsCrawlingSessionInfoCQ extends AbstractBsCrawlingSessionInfoCQ { return "crawlingSessionId_NotInScopeRelation_CrawlingSession." + key; } - /** + /** * Add order-by as ascend.
* CRAWLING_SESSION_ID: {IX, NotNull, BIGINT(19), FK to CRAWLING_SESSION} * @return this. (NotNull) @@ -222,7 +222,7 @@ public class BsCrawlingSessionInfoCQ extends AbstractBsCrawlingSessionInfoCQ { return getKey(); } - /** + /** * Add order-by as ascend.
* KEY: {NotNull, VARCHAR(20)} * @return this. (NotNull) @@ -256,7 +256,7 @@ public class BsCrawlingSessionInfoCQ extends AbstractBsCrawlingSessionInfoCQ { return getValue(); } - /** + /** * Add order-by as ascend.
* VALUE: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -290,7 +290,7 @@ public class BsCrawlingSessionInfoCQ extends AbstractBsCrawlingSessionInfoCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataConfigToLabelTypeMappingCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataConfigToLabelTypeMappingCQ.java index 29a0da936..c663eb1e9 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataConfigToLabelTypeMappingCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataConfigToLabelTypeMappingCQ.java @@ -117,7 +117,7 @@ public class BsDataConfigToLabelTypeMappingCQ extends return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -189,7 +189,7 @@ public class BsDataConfigToLabelTypeMappingCQ extends return "dataConfigId_NotInScopeRelation_DataCrawlingConfig." + key; } - /** + /** * Add order-by as ascend.
* DATA_CONFIG_ID: {IX, NotNull, BIGINT(19), FK to DATA_CRAWLING_CONFIG} * @return this. (NotNull) @@ -259,7 +259,7 @@ public class BsDataConfigToLabelTypeMappingCQ extends return "labelTypeId_NotInScopeRelation_LabelType." + key; } - /** + /** * Add order-by as ascend.
* LABEL_TYPE_ID: {IX, NotNull, BIGINT(19), FK to LABEL_TYPE} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataConfigToRoleTypeMappingCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataConfigToRoleTypeMappingCQ.java index 2ee560dff..9be641030 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataConfigToRoleTypeMappingCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataConfigToRoleTypeMappingCQ.java @@ -117,7 +117,7 @@ public class BsDataConfigToRoleTypeMappingCQ extends return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -189,7 +189,7 @@ public class BsDataConfigToRoleTypeMappingCQ extends return "dataConfigId_NotInScopeRelation_DataCrawlingConfig." + key; } - /** + /** * Add order-by as ascend.
* DATA_CONFIG_ID: {IX, NotNull, BIGINT(19), FK to DATA_CRAWLING_CONFIG} * @return this. (NotNull) @@ -259,7 +259,7 @@ public class BsDataConfigToRoleTypeMappingCQ extends return "roleTypeId_NotInScopeRelation_RoleType." + key; } - /** + /** * Add order-by as ascend.
* ROLE_TYPE_ID: {IX, NotNull, BIGINT(19), FK to ROLE_TYPE} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataCrawlingConfigCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataCrawlingConfigCQ.java index 8920967f4..0840dee7d 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataCrawlingConfigCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsDataCrawlingConfigCQ.java @@ -400,7 +400,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { + key; } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -434,7 +434,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getName(); } - /** + /** * Add order-by as ascend.
* NAME: {NotNull, VARCHAR(200)} * @return this. (NotNull) @@ -468,7 +468,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getHandlerName(); } - /** + /** * Add order-by as ascend.
* HANDLER_NAME: {NotNull, VARCHAR(200)} * @return this. (NotNull) @@ -502,7 +502,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getHandlerParameter(); } - /** + /** * Add order-by as ascend.
* HANDLER_PARAMETER: {VARCHAR(4000)} * @return this. (NotNull) @@ -536,7 +536,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getHandlerScript(); } - /** + /** * Add order-by as ascend.
* HANDLER_SCRIPT: {VARCHAR(4000)} * @return this. (NotNull) @@ -570,7 +570,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getBoost(); } - /** + /** * Add order-by as ascend.
* BOOST: {NotNull, DOUBLE(17)} * @return this. (NotNull) @@ -604,7 +604,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getAvailable(); } - /** + /** * Add order-by as ascend.
* AVAILABLE: {NotNull, VARCHAR(1)} * @return this. (NotNull) @@ -638,7 +638,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getSortOrder(); } - /** + /** * Add order-by as ascend.
* SORT_ORDER: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -672,7 +672,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getCreatedBy(); } - /** + /** * Add order-by as ascend.
* CREATED_BY: {NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -706,7 +706,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -740,7 +740,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getUpdatedBy(); } - /** + /** * Add order-by as ascend.
* UPDATED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -774,7 +774,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -808,7 +808,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getDeletedBy(); } - /** + /** * Add order-by as ascend.
* DELETED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -842,7 +842,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getDeletedTime(); } - /** + /** * Add order-by as ascend.
* DELETED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -876,7 +876,7 @@ public class BsDataCrawlingConfigCQ extends AbstractBsDataCrawlingConfigCQ { return getVersionNo(); } - /** + /** * Add order-by as ascend.
* VERSION_NO: {NotNull, INTEGER(10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFailureUrlCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFailureUrlCQ.java index 49eaa0b58..55c003dec 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFailureUrlCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFailureUrlCQ.java @@ -114,7 +114,7 @@ public class BsFailureUrlCQ extends AbstractBsFailureUrlCQ { return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -148,7 +148,7 @@ public class BsFailureUrlCQ extends AbstractBsFailureUrlCQ { return getUrl(); } - /** + /** * Add order-by as ascend.
* URL: {IX, NotNull, VARCHAR(4000)} * @return this. (NotNull) @@ -182,7 +182,7 @@ public class BsFailureUrlCQ extends AbstractBsFailureUrlCQ { return getThreadName(); } - /** + /** * Add order-by as ascend.
* THREAD_NAME: {NotNull, VARCHAR(30)} * @return this. (NotNull) @@ -216,7 +216,7 @@ public class BsFailureUrlCQ extends AbstractBsFailureUrlCQ { return getErrorName(); } - /** + /** * Add order-by as ascend.
* ERROR_NAME: {IX+, VARCHAR(255)} * @return this. (NotNull) @@ -250,7 +250,7 @@ public class BsFailureUrlCQ extends AbstractBsFailureUrlCQ { return getErrorLog(); } - /** + /** * Add order-by as ascend.
* ERROR_LOG: {VARCHAR(4000)} * @return this. (NotNull) @@ -284,7 +284,7 @@ public class BsFailureUrlCQ extends AbstractBsFailureUrlCQ { return getErrorCount(); } - /** + /** * Add order-by as ascend.
* ERROR_COUNT: {IX+, NotNull, INTEGER(10)} * @return this. (NotNull) @@ -318,7 +318,7 @@ public class BsFailureUrlCQ extends AbstractBsFailureUrlCQ { return getLastAccessTime(); } - /** + /** * Add order-by as ascend.
* LAST_ACCESS_TIME: {IX+, NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -352,7 +352,7 @@ public class BsFailureUrlCQ extends AbstractBsFailureUrlCQ { return getConfigId(); } - /** + /** * Add order-by as ascend.
* CONFIG_ID: {IX, VARCHAR(100)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFavoriteLogCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFavoriteLogCQ.java index 165ec8aa1..1ba0a3625 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFavoriteLogCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFavoriteLogCQ.java @@ -115,7 +115,7 @@ public class BsFavoriteLogCQ extends AbstractBsFavoriteLogCQ { return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -184,7 +184,7 @@ public class BsFavoriteLogCQ extends AbstractBsFavoriteLogCQ { return "userId_NotInScopeRelation_UserInfo." + key; } - /** + /** * Add order-by as ascend.
* USER_ID: {UQ, IX, NotNull, BIGINT(19), FK to USER_INFO} * @return this. (NotNull) @@ -218,7 +218,7 @@ public class BsFavoriteLogCQ extends AbstractBsFavoriteLogCQ { return getUrl(); } - /** + /** * Add order-by as ascend.
* URL: {UQ+, NotNull, VARCHAR(4000)} * @return this. (NotNull) @@ -252,7 +252,7 @@ public class BsFavoriteLogCQ extends AbstractBsFavoriteLogCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileAuthenticationCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileAuthenticationCQ.java index 09a67fc0b..8b292eb88 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileAuthenticationCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileAuthenticationCQ.java @@ -115,7 +115,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -149,7 +149,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getHostname(); } - /** + /** * Add order-by as ascend.
* HOSTNAME: {VARCHAR(255)} * @return this. (NotNull) @@ -183,7 +183,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getPort(); } - /** + /** * Add order-by as ascend.
* PORT: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -217,7 +217,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getProtocolScheme(); } - /** + /** * Add order-by as ascend.
* PROTOCOL_SCHEME: {VARCHAR(10)} * @return this. (NotNull) @@ -251,7 +251,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getUsername(); } - /** + /** * Add order-by as ascend.
* USERNAME: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -285,7 +285,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getPassword(); } - /** + /** * Add order-by as ascend.
* PASSWORD: {VARCHAR(100)} * @return this. (NotNull) @@ -319,7 +319,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getParameters(); } - /** + /** * Add order-by as ascend.
* PARAMETERS: {VARCHAR(1000)} * @return this. (NotNull) @@ -394,7 +394,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { + key; } - /** + /** * Add order-by as ascend.
* FILE_CRAWLING_CONFIG_ID: {IX, NotNull, BIGINT(19), FK to FILE_CRAWLING_CONFIG} * @return this. (NotNull) @@ -428,7 +428,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getCreatedBy(); } - /** + /** * Add order-by as ascend.
* CREATED_BY: {NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -462,7 +462,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -496,7 +496,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getUpdatedBy(); } - /** + /** * Add order-by as ascend.
* UPDATED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -530,7 +530,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -564,7 +564,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getDeletedBy(); } - /** + /** * Add order-by as ascend.
* DELETED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -598,7 +598,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getDeletedTime(); } - /** + /** * Add order-by as ascend.
* DELETED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -632,7 +632,7 @@ public class BsFileAuthenticationCQ extends AbstractBsFileAuthenticationCQ { return getVersionNo(); } - /** + /** * Add order-by as ascend.
* VERSION_NO: {NotNull, INTEGER(10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileConfigToLabelTypeMappingCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileConfigToLabelTypeMappingCQ.java index 3ef70e21b..d7629d6c0 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileConfigToLabelTypeMappingCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileConfigToLabelTypeMappingCQ.java @@ -117,7 +117,7 @@ public class BsFileConfigToLabelTypeMappingCQ extends return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -189,7 +189,7 @@ public class BsFileConfigToLabelTypeMappingCQ extends return "fileConfigId_NotInScopeRelation_FileCrawlingConfig." + key; } - /** + /** * Add order-by as ascend.
* FILE_CONFIG_ID: {IX, NotNull, BIGINT(19), FK to FILE_CRAWLING_CONFIG} * @return this. (NotNull) @@ -259,7 +259,7 @@ public class BsFileConfigToLabelTypeMappingCQ extends return "labelTypeId_NotInScopeRelation_LabelType." + key; } - /** + /** * Add order-by as ascend.
* LABEL_TYPE_ID: {IX, NotNull, BIGINT(19), FK to LABEL_TYPE} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileConfigToRoleTypeMappingCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileConfigToRoleTypeMappingCQ.java index 2e5671d91..4a1e2d485 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileConfigToRoleTypeMappingCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileConfigToRoleTypeMappingCQ.java @@ -117,7 +117,7 @@ public class BsFileConfigToRoleTypeMappingCQ extends return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -189,7 +189,7 @@ public class BsFileConfigToRoleTypeMappingCQ extends return "fileConfigId_NotInScopeRelation_FileCrawlingConfig." + key; } - /** + /** * Add order-by as ascend.
* FILE_CONFIG_ID: {IX, NotNull, BIGINT(19), FK to FILE_CRAWLING_CONFIG} * @return this. (NotNull) @@ -259,7 +259,7 @@ public class BsFileConfigToRoleTypeMappingCQ extends return "roleTypeId_NotInScopeRelation_RoleType." + key; } - /** + /** * Add order-by as ascend.
* ROLE_TYPE_ID: {IX, NotNull, BIGINT(19), FK to ROLE_TYPE} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileCrawlingConfigCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileCrawlingConfigCQ.java index 9a9b1da69..85ecab2ed 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileCrawlingConfigCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsFileCrawlingConfigCQ.java @@ -529,7 +529,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { + key; } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -563,7 +563,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getName(); } - /** + /** * Add order-by as ascend.
* NAME: {NotNull, VARCHAR(200)} * @return this. (NotNull) @@ -597,7 +597,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getPaths(); } - /** + /** * Add order-by as ascend.
* PATHS: {NotNull, VARCHAR(4000)} * @return this. (NotNull) @@ -631,7 +631,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getIncludedPaths(); } - /** + /** * Add order-by as ascend.
* INCLUDED_PATHS: {VARCHAR(4000)} * @return this. (NotNull) @@ -665,7 +665,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getExcludedPaths(); } - /** + /** * Add order-by as ascend.
* EXCLUDED_PATHS: {VARCHAR(4000)} * @return this. (NotNull) @@ -699,7 +699,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getIncludedDocPaths(); } - /** + /** * Add order-by as ascend.
* INCLUDED_DOC_PATHS: {VARCHAR(4000)} * @return this. (NotNull) @@ -733,7 +733,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getExcludedDocPaths(); } - /** + /** * Add order-by as ascend.
* EXCLUDED_DOC_PATHS: {VARCHAR(4000)} * @return this. (NotNull) @@ -767,7 +767,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getConfigParameter(); } - /** + /** * Add order-by as ascend.
* CONFIG_PARAMETER: {VARCHAR(4000)} * @return this. (NotNull) @@ -801,7 +801,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getDepth(); } - /** + /** * Add order-by as ascend.
* DEPTH: {INTEGER(10)} * @return this. (NotNull) @@ -835,7 +835,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getMaxAccessCount(); } - /** + /** * Add order-by as ascend.
* MAX_ACCESS_COUNT: {BIGINT(19)} * @return this. (NotNull) @@ -869,7 +869,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getNumOfThread(); } - /** + /** * Add order-by as ascend.
* NUM_OF_THREAD: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -903,7 +903,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getIntervalTime(); } - /** + /** * Add order-by as ascend.
* INTERVAL_TIME: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -937,7 +937,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getBoost(); } - /** + /** * Add order-by as ascend.
* BOOST: {NotNull, DOUBLE(17)} * @return this. (NotNull) @@ -971,7 +971,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getAvailable(); } - /** + /** * Add order-by as ascend.
* AVAILABLE: {NotNull, VARCHAR(1)} * @return this. (NotNull) @@ -1005,7 +1005,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getSortOrder(); } - /** + /** * Add order-by as ascend.
* SORT_ORDER: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -1039,7 +1039,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getCreatedBy(); } - /** + /** * Add order-by as ascend.
* CREATED_BY: {NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -1073,7 +1073,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -1107,7 +1107,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getUpdatedBy(); } - /** + /** * Add order-by as ascend.
* UPDATED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -1141,7 +1141,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -1175,7 +1175,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getDeletedBy(); } - /** + /** * Add order-by as ascend.
* DELETED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -1209,7 +1209,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getDeletedTime(); } - /** + /** * Add order-by as ascend.
* DELETED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -1243,7 +1243,7 @@ public class BsFileCrawlingConfigCQ extends AbstractBsFileCrawlingConfigCQ { return getVersionNo(); } - /** + /** * Add order-by as ascend.
* VERSION_NO: {NotNull, INTEGER(10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsJobLogCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsJobLogCQ.java index 15b8c81d8..ec14deff9 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsJobLogCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsJobLogCQ.java @@ -114,7 +114,7 @@ public class BsJobLogCQ extends AbstractBsJobLogCQ { return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -148,7 +148,7 @@ public class BsJobLogCQ extends AbstractBsJobLogCQ { return getJobName(); } - /** + /** * Add order-by as ascend.
* JOB_NAME: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -182,7 +182,7 @@ public class BsJobLogCQ extends AbstractBsJobLogCQ { return getJobStatus(); } - /** + /** * Add order-by as ascend.
* JOB_STATUS: {NotNull, VARCHAR(10)} * @return this. (NotNull) @@ -216,7 +216,7 @@ public class BsJobLogCQ extends AbstractBsJobLogCQ { return getTarget(); } - /** + /** * Add order-by as ascend.
* TARGET: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -250,7 +250,7 @@ public class BsJobLogCQ extends AbstractBsJobLogCQ { return getScriptType(); } - /** + /** * Add order-by as ascend.
* SCRIPT_TYPE: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -284,7 +284,7 @@ public class BsJobLogCQ extends AbstractBsJobLogCQ { return getScriptData(); } - /** + /** * Add order-by as ascend.
* SCRIPT_DATA: {VARCHAR(4000)} * @return this. (NotNull) @@ -318,7 +318,7 @@ public class BsJobLogCQ extends AbstractBsJobLogCQ { return getScriptResult(); } - /** + /** * Add order-by as ascend.
* SCRIPT_RESULT: {VARCHAR(4000)} * @return this. (NotNull) @@ -352,7 +352,7 @@ public class BsJobLogCQ extends AbstractBsJobLogCQ { return getStartTime(); } - /** + /** * Add order-by as ascend.
* START_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -386,7 +386,7 @@ public class BsJobLogCQ extends AbstractBsJobLogCQ { return getEndTime(); } - /** + /** * Add order-by as ascend.
* END_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsLabelTypeCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsLabelTypeCQ.java index 5d9658683..735f3b346 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsLabelTypeCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsLabelTypeCQ.java @@ -684,7 +684,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { + key; } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -718,7 +718,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getName(); } - /** + /** * Add order-by as ascend.
* NAME: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -752,7 +752,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getValue(); } - /** + /** * Add order-by as ascend.
* VALUE: {NotNull, VARCHAR(20)} * @return this. (NotNull) @@ -786,7 +786,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getIncludedPaths(); } - /** + /** * Add order-by as ascend.
* INCLUDED_PATHS: {VARCHAR(4000)} * @return this. (NotNull) @@ -820,7 +820,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getExcludedPaths(); } - /** + /** * Add order-by as ascend.
* EXCLUDED_PATHS: {VARCHAR(4000)} * @return this. (NotNull) @@ -854,7 +854,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getSortOrder(); } - /** + /** * Add order-by as ascend.
* SORT_ORDER: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -888,7 +888,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getCreatedBy(); } - /** + /** * Add order-by as ascend.
* CREATED_BY: {NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -922,7 +922,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -956,7 +956,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getUpdatedBy(); } - /** + /** * Add order-by as ascend.
* UPDATED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -990,7 +990,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -1024,7 +1024,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getDeletedBy(); } - /** + /** * Add order-by as ascend.
* DELETED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -1058,7 +1058,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getDeletedTime(); } - /** + /** * Add order-by as ascend.
* DELETED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -1092,7 +1092,7 @@ public class BsLabelTypeCQ extends AbstractBsLabelTypeCQ { return getVersionNo(); } - /** + /** * Add order-by as ascend.
* VERSION_NO: {NotNull, INTEGER(10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsLabelTypeToRoleTypeMappingCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsLabelTypeToRoleTypeMappingCQ.java index 6d7635d4b..14bd5e777 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsLabelTypeToRoleTypeMappingCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsLabelTypeToRoleTypeMappingCQ.java @@ -117,7 +117,7 @@ public class BsLabelTypeToRoleTypeMappingCQ extends return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -187,7 +187,7 @@ public class BsLabelTypeToRoleTypeMappingCQ extends return "labelTypeId_NotInScopeRelation_LabelType." + key; } - /** + /** * Add order-by as ascend.
* LABEL_TYPE_ID: {IX, NotNull, BIGINT(19), FK to LABEL_TYPE} * @return this. (NotNull) @@ -257,7 +257,7 @@ public class BsLabelTypeToRoleTypeMappingCQ extends return "roleTypeId_NotInScopeRelation_RoleType." + key; } - /** + /** * Add order-by as ascend.
* ROLE_TYPE_ID: {IX, NotNull, BIGINT(19), FK to ROLE_TYPE} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsOverlappingHostCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsOverlappingHostCQ.java index 5dfdd34ae..abbd63394 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsOverlappingHostCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsOverlappingHostCQ.java @@ -114,7 +114,7 @@ public class BsOverlappingHostCQ extends AbstractBsOverlappingHostCQ { return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -148,7 +148,7 @@ public class BsOverlappingHostCQ extends AbstractBsOverlappingHostCQ { return getRegularName(); } - /** + /** * Add order-by as ascend.
* REGULAR_NAME: {IX, NotNull, VARCHAR(1000)} * @return this. (NotNull) @@ -182,7 +182,7 @@ public class BsOverlappingHostCQ extends AbstractBsOverlappingHostCQ { return getOverlappingName(); } - /** + /** * Add order-by as ascend.
* OVERLAPPING_NAME: {NotNull, VARCHAR(1000)} * @return this. (NotNull) @@ -216,7 +216,7 @@ public class BsOverlappingHostCQ extends AbstractBsOverlappingHostCQ { return getSortOrder(); } - /** + /** * Add order-by as ascend.
* SORT_ORDER: {IX+, NotNull, INTEGER(10)} * @return this. (NotNull) @@ -250,7 +250,7 @@ public class BsOverlappingHostCQ extends AbstractBsOverlappingHostCQ { return getCreatedBy(); } - /** + /** * Add order-by as ascend.
* CREATED_BY: {NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -284,7 +284,7 @@ public class BsOverlappingHostCQ extends AbstractBsOverlappingHostCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -318,7 +318,7 @@ public class BsOverlappingHostCQ extends AbstractBsOverlappingHostCQ { return getUpdatedBy(); } - /** + /** * Add order-by as ascend.
* UPDATED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -352,7 +352,7 @@ public class BsOverlappingHostCQ extends AbstractBsOverlappingHostCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -386,7 +386,7 @@ public class BsOverlappingHostCQ extends AbstractBsOverlappingHostCQ { return getDeletedBy(); } - /** + /** * Add order-by as ascend.
* DELETED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -420,7 +420,7 @@ public class BsOverlappingHostCQ extends AbstractBsOverlappingHostCQ { return getDeletedTime(); } - /** + /** * Add order-by as ascend.
* DELETED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -454,7 +454,7 @@ public class BsOverlappingHostCQ extends AbstractBsOverlappingHostCQ { return getVersionNo(); } - /** + /** * Add order-by as ascend.
* VERSION_NO: {NotNull, INTEGER(10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsPathMappingCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsPathMappingCQ.java index 2e8f618bc..8f928d6a4 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsPathMappingCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsPathMappingCQ.java @@ -114,7 +114,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -148,7 +148,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getRegex(); } - /** + /** * Add order-by as ascend.
* REGEX: {NotNull, VARCHAR(1000)} * @return this. (NotNull) @@ -182,7 +182,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getReplacement(); } - /** + /** * Add order-by as ascend.
* REPLACEMENT: {NotNull, VARCHAR(1000)} * @return this. (NotNull) @@ -216,7 +216,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getProcessType(); } - /** + /** * Add order-by as ascend.
* PROCESS_TYPE: {NotNull, VARCHAR(1), classification=ProcessType} * @return this. (NotNull) @@ -250,7 +250,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getSortOrder(); } - /** + /** * Add order-by as ascend.
* SORT_ORDER: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -284,7 +284,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getCreatedBy(); } - /** + /** * Add order-by as ascend.
* CREATED_BY: {NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -318,7 +318,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -352,7 +352,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getUpdatedBy(); } - /** + /** * Add order-by as ascend.
* UPDATED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -386,7 +386,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -420,7 +420,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getDeletedBy(); } - /** + /** * Add order-by as ascend.
* DELETED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -454,7 +454,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getDeletedTime(); } - /** + /** * Add order-by as ascend.
* DELETED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -488,7 +488,7 @@ public class BsPathMappingCQ extends AbstractBsPathMappingCQ { return getVersionNo(); } - /** + /** * Add order-by as ascend.
* VERSION_NO: {NotNull, INTEGER(10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsRequestHeaderCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsRequestHeaderCQ.java index 9446be168..05dbbba6b 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsRequestHeaderCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsRequestHeaderCQ.java @@ -115,7 +115,7 @@ public class BsRequestHeaderCQ extends AbstractBsRequestHeaderCQ { return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -149,7 +149,7 @@ public class BsRequestHeaderCQ extends AbstractBsRequestHeaderCQ { return getName(); } - /** + /** * Add order-by as ascend.
* NAME: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -183,7 +183,7 @@ public class BsRequestHeaderCQ extends AbstractBsRequestHeaderCQ { return getValue(); } - /** + /** * Add order-by as ascend.
* VALUE: {NotNull, VARCHAR(1000)} * @return this. (NotNull) @@ -258,7 +258,7 @@ public class BsRequestHeaderCQ extends AbstractBsRequestHeaderCQ { + key; } - /** + /** * Add order-by as ascend.
* WEB_CRAWLING_CONFIG_ID: {IX, NotNull, BIGINT(19), FK to WEB_CRAWLING_CONFIG} * @return this. (NotNull) @@ -292,7 +292,7 @@ public class BsRequestHeaderCQ extends AbstractBsRequestHeaderCQ { return getCreatedBy(); } - /** + /** * Add order-by as ascend.
* CREATED_BY: {NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -326,7 +326,7 @@ public class BsRequestHeaderCQ extends AbstractBsRequestHeaderCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -360,7 +360,7 @@ public class BsRequestHeaderCQ extends AbstractBsRequestHeaderCQ { return getUpdatedBy(); } - /** + /** * Add order-by as ascend.
* UPDATED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -394,7 +394,7 @@ public class BsRequestHeaderCQ extends AbstractBsRequestHeaderCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -428,7 +428,7 @@ public class BsRequestHeaderCQ extends AbstractBsRequestHeaderCQ { return getDeletedBy(); } - /** + /** * Add order-by as ascend.
* DELETED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -462,7 +462,7 @@ public class BsRequestHeaderCQ extends AbstractBsRequestHeaderCQ { return getDeletedTime(); } - /** + /** * Add order-by as ascend.
* DELETED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -496,7 +496,7 @@ public class BsRequestHeaderCQ extends AbstractBsRequestHeaderCQ { return getVersionNo(); } - /** + /** * Add order-by as ascend.
* VERSION_NO: {NotNull, INTEGER(10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsRoleTypeCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsRoleTypeCQ.java index cf91c8dff..7f7ae2e4a 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsRoleTypeCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsRoleTypeCQ.java @@ -678,7 +678,7 @@ public class BsRoleTypeCQ extends AbstractBsRoleTypeCQ { + key; } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -712,7 +712,7 @@ public class BsRoleTypeCQ extends AbstractBsRoleTypeCQ { return getName(); } - /** + /** * Add order-by as ascend.
* NAME: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -746,7 +746,7 @@ public class BsRoleTypeCQ extends AbstractBsRoleTypeCQ { return getValue(); } - /** + /** * Add order-by as ascend.
* VALUE: {NotNull, VARCHAR(20)} * @return this. (NotNull) @@ -780,7 +780,7 @@ public class BsRoleTypeCQ extends AbstractBsRoleTypeCQ { return getSortOrder(); } - /** + /** * Add order-by as ascend.
* SORT_ORDER: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -814,7 +814,7 @@ public class BsRoleTypeCQ extends AbstractBsRoleTypeCQ { return getCreatedBy(); } - /** + /** * Add order-by as ascend.
* CREATED_BY: {NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -848,7 +848,7 @@ public class BsRoleTypeCQ extends AbstractBsRoleTypeCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -882,7 +882,7 @@ public class BsRoleTypeCQ extends AbstractBsRoleTypeCQ { return getUpdatedBy(); } - /** + /** * Add order-by as ascend.
* UPDATED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -916,7 +916,7 @@ public class BsRoleTypeCQ extends AbstractBsRoleTypeCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -950,7 +950,7 @@ public class BsRoleTypeCQ extends AbstractBsRoleTypeCQ { return getDeletedBy(); } - /** + /** * Add order-by as ascend.
* DELETED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -984,7 +984,7 @@ public class BsRoleTypeCQ extends AbstractBsRoleTypeCQ { return getDeletedTime(); } - /** + /** * Add order-by as ascend.
* DELETED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -1018,7 +1018,7 @@ public class BsRoleTypeCQ extends AbstractBsRoleTypeCQ { return getVersionNo(); } - /** + /** * Add order-by as ascend.
* VERSION_NO: {NotNull, INTEGER(10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsScheduledJobCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsScheduledJobCQ.java index 491ad8519..b6e13b0e5 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsScheduledJobCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsScheduledJobCQ.java @@ -114,7 +114,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -148,7 +148,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getName(); } - /** + /** * Add order-by as ascend.
* NAME: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -182,7 +182,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getTarget(); } - /** + /** * Add order-by as ascend.
* TARGET: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -216,7 +216,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getCronExpression(); } - /** + /** * Add order-by as ascend.
* CRON_EXPRESSION: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -250,7 +250,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getScriptType(); } - /** + /** * Add order-by as ascend.
* SCRIPT_TYPE: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -284,7 +284,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getScriptData(); } - /** + /** * Add order-by as ascend.
* SCRIPT_DATA: {VARCHAR(4000)} * @return this. (NotNull) @@ -318,7 +318,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getCrawler(); } - /** + /** * Add order-by as ascend.
* CRAWLER: {NotNull, VARCHAR(1)} * @return this. (NotNull) @@ -352,7 +352,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getJobLogging(); } - /** + /** * Add order-by as ascend.
* JOB_LOGGING: {NotNull, VARCHAR(1)} * @return this. (NotNull) @@ -386,7 +386,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getAvailable(); } - /** + /** * Add order-by as ascend.
* AVAILABLE: {NotNull, VARCHAR(1)} * @return this. (NotNull) @@ -420,7 +420,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getSortOrder(); } - /** + /** * Add order-by as ascend.
* SORT_ORDER: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -454,7 +454,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getCreatedBy(); } - /** + /** * Add order-by as ascend.
* CREATED_BY: {NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -488,7 +488,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -522,7 +522,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getUpdatedBy(); } - /** + /** * Add order-by as ascend.
* UPDATED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -556,7 +556,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -590,7 +590,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getDeletedBy(); } - /** + /** * Add order-by as ascend.
* DELETED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -624,7 +624,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getDeletedTime(); } - /** + /** * Add order-by as ascend.
* DELETED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -658,7 +658,7 @@ public class BsScheduledJobCQ extends AbstractBsScheduledJobCQ { return getVersionNo(); } - /** + /** * Add order-by as ascend.
* VERSION_NO: {NotNull, INTEGER(10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsSearchFieldLogCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsSearchFieldLogCQ.java index 3dbd69dc5..ff26a4088 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsSearchFieldLogCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsSearchFieldLogCQ.java @@ -115,7 +115,7 @@ public class BsSearchFieldLogCQ extends AbstractBsSearchFieldLogCQ { return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -185,7 +185,7 @@ public class BsSearchFieldLogCQ extends AbstractBsSearchFieldLogCQ { return "searchId_NotInScopeRelation_SearchLog." + key; } - /** + /** * Add order-by as ascend.
* SEARCH_ID: {IX, NotNull, BIGINT(19), FK to SEARCH_LOG} * @return this. (NotNull) @@ -219,7 +219,7 @@ public class BsSearchFieldLogCQ extends AbstractBsSearchFieldLogCQ { return getName(); } - /** + /** * Add order-by as ascend.
* NAME: {IX, NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -253,7 +253,7 @@ public class BsSearchFieldLogCQ extends AbstractBsSearchFieldLogCQ { return getValue(); } - /** + /** * Add order-by as ascend.
* VALUE: {NotNull, VARCHAR(1000)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsSearchLogCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsSearchLogCQ.java index a3f068c0c..1069c9df5 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsSearchLogCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsSearchLogCQ.java @@ -370,7 +370,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return "id_QueryDerivedReferrer_SearchFieldLogListParameter." + key; } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -404,7 +404,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return getSearchWord(); } - /** + /** * Add order-by as ascend.
* SEARCH_WORD: {IX, VARCHAR(1000)} * @return this. (NotNull) @@ -438,7 +438,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return getRequestedTime(); } - /** + /** * Add order-by as ascend.
* REQUESTED_TIME: {IX, NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -472,7 +472,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return getResponseTime(); } - /** + /** * Add order-by as ascend.
* RESPONSE_TIME: {IX, NotNull, INTEGER(10)} * @return this. (NotNull) @@ -506,7 +506,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return getHitCount(); } - /** + /** * Add order-by as ascend.
* HIT_COUNT: {IX, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -540,7 +540,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return getQueryOffset(); } - /** + /** * Add order-by as ascend.
* QUERY_OFFSET: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -574,7 +574,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return getQueryPageSize(); } - /** + /** * Add order-by as ascend.
* QUERY_PAGE_SIZE: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -608,7 +608,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return getUserAgent(); } - /** + /** * Add order-by as ascend.
* USER_AGENT: {VARCHAR(255)} * @return this. (NotNull) @@ -642,7 +642,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return getReferer(); } - /** + /** * Add order-by as ascend.
* REFERER: {VARCHAR(1000)} * @return this. (NotNull) @@ -676,7 +676,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return getClientIp(); } - /** + /** * Add order-by as ascend.
* CLIENT_IP: {VARCHAR(50)} * @return this. (NotNull) @@ -710,7 +710,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return getUserSessionId(); } - /** + /** * Add order-by as ascend.
* USER_SESSION_ID: {IX+, VARCHAR(100)} * @return this. (NotNull) @@ -744,7 +744,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return getAccessType(); } - /** + /** * Add order-by as ascend.
* ACCESS_TYPE: {NotNull, VARCHAR(1), classification=AccessType} * @return this. (NotNull) @@ -813,7 +813,7 @@ public class BsSearchLogCQ extends AbstractBsSearchLogCQ { return "userId_NotInScopeRelation_UserInfo." + key; } - /** + /** * Add order-by as ascend.
* USER_ID: {IX, BIGINT(19), FK to USER_INFO} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsUserInfoCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsUserInfoCQ.java index 14850896e..14a5b7b8e 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsUserInfoCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsUserInfoCQ.java @@ -369,7 +369,7 @@ public class BsUserInfoCQ extends AbstractBsUserInfoCQ { return "id_QueryDerivedReferrer_SearchLogListParameter." + key; } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -403,7 +403,7 @@ public class BsUserInfoCQ extends AbstractBsUserInfoCQ { return getCode(); } - /** + /** * Add order-by as ascend.
* CODE: {NotNull, VARCHAR(1000)} * @return this. (NotNull) @@ -437,7 +437,7 @@ public class BsUserInfoCQ extends AbstractBsUserInfoCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -471,7 +471,7 @@ public class BsUserInfoCQ extends AbstractBsUserInfoCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebAuthenticationCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebAuthenticationCQ.java index 87aa156c1..0d7678d56 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebAuthenticationCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebAuthenticationCQ.java @@ -115,7 +115,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -149,7 +149,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getHostname(); } - /** + /** * Add order-by as ascend.
* HOSTNAME: {VARCHAR(100)} * @return this. (NotNull) @@ -183,7 +183,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getPort(); } - /** + /** * Add order-by as ascend.
* PORT: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -217,7 +217,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getAuthRealm(); } - /** + /** * Add order-by as ascend.
* AUTH_REALM: {VARCHAR(100)} * @return this. (NotNull) @@ -251,7 +251,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getProtocolScheme(); } - /** + /** * Add order-by as ascend.
* PROTOCOL_SCHEME: {VARCHAR(10)} * @return this. (NotNull) @@ -285,7 +285,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getUsername(); } - /** + /** * Add order-by as ascend.
* USERNAME: {NotNull, VARCHAR(100)} * @return this. (NotNull) @@ -319,7 +319,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getPassword(); } - /** + /** * Add order-by as ascend.
* PASSWORD: {VARCHAR(100)} * @return this. (NotNull) @@ -353,7 +353,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getParameters(); } - /** + /** * Add order-by as ascend.
* PARAMETERS: {VARCHAR(1000)} * @return this. (NotNull) @@ -428,7 +428,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { + key; } - /** + /** * Add order-by as ascend.
* WEB_CRAWLING_CONFIG_ID: {IX, NotNull, BIGINT(19), FK to WEB_CRAWLING_CONFIG} * @return this. (NotNull) @@ -462,7 +462,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getCreatedBy(); } - /** + /** * Add order-by as ascend.
* CREATED_BY: {NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -496,7 +496,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -530,7 +530,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getUpdatedBy(); } - /** + /** * Add order-by as ascend.
* UPDATED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -564,7 +564,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -598,7 +598,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getDeletedBy(); } - /** + /** * Add order-by as ascend.
* DELETED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -632,7 +632,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getDeletedTime(); } - /** + /** * Add order-by as ascend.
* DELETED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -666,7 +666,7 @@ public class BsWebAuthenticationCQ extends AbstractBsWebAuthenticationCQ { return getVersionNo(); } - /** + /** * Add order-by as ascend.
* VERSION_NO: {NotNull, INTEGER(10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebConfigToLabelTypeMappingCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebConfigToLabelTypeMappingCQ.java index 5e33c790b..0e313ce12 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebConfigToLabelTypeMappingCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebConfigToLabelTypeMappingCQ.java @@ -117,7 +117,7 @@ public class BsWebConfigToLabelTypeMappingCQ extends return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -187,7 +187,7 @@ public class BsWebConfigToLabelTypeMappingCQ extends return "webConfigId_NotInScopeRelation_WebCrawlingConfig." + key; } - /** + /** * Add order-by as ascend.
* WEB_CONFIG_ID: {IX, NotNull, BIGINT(19), FK to WEB_CRAWLING_CONFIG} * @return this. (NotNull) @@ -257,7 +257,7 @@ public class BsWebConfigToLabelTypeMappingCQ extends return "labelTypeId_NotInScopeRelation_LabelType." + key; } - /** + /** * Add order-by as ascend.
* LABEL_TYPE_ID: {IX, NotNull, BIGINT(19), FK to LABEL_TYPE} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebConfigToRoleTypeMappingCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebConfigToRoleTypeMappingCQ.java index e76aa4d6e..8353b63f3 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebConfigToRoleTypeMappingCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebConfigToRoleTypeMappingCQ.java @@ -117,7 +117,7 @@ public class BsWebConfigToRoleTypeMappingCQ extends return getId(); } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -187,7 +187,7 @@ public class BsWebConfigToRoleTypeMappingCQ extends return "webConfigId_NotInScopeRelation_WebCrawlingConfig." + key; } - /** + /** * Add order-by as ascend.
* WEB_CONFIG_ID: {IX, NotNull, BIGINT(19), FK to WEB_CRAWLING_CONFIG} * @return this. (NotNull) @@ -257,7 +257,7 @@ public class BsWebConfigToRoleTypeMappingCQ extends return "roleTypeId_NotInScopeRelation_RoleType." + key; } - /** + /** * Add order-by as ascend.
* ROLE_TYPE_ID: {IX, NotNull, BIGINT(19), FK to ROLE_TYPE} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebCrawlingConfigCQ.java b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebCrawlingConfigCQ.java index aa781c8f9..5177af1a6 100644 --- a/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebCrawlingConfigCQ.java +++ b/src/main/java/jp/sf/fess/db/cbean/cq/bs/BsWebCrawlingConfigCQ.java @@ -654,7 +654,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { + key; } - /** + /** * Add order-by as ascend.
* ID: {PK, ID, NotNull, BIGINT(19)} * @return this. (NotNull) @@ -688,7 +688,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getName(); } - /** + /** * Add order-by as ascend.
* NAME: {NotNull, VARCHAR(200)} * @return this. (NotNull) @@ -722,7 +722,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getUrls(); } - /** + /** * Add order-by as ascend.
* URLS: {NotNull, VARCHAR(4000)} * @return this. (NotNull) @@ -756,7 +756,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getIncludedUrls(); } - /** + /** * Add order-by as ascend.
* INCLUDED_URLS: {VARCHAR(4000)} * @return this. (NotNull) @@ -790,7 +790,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getExcludedUrls(); } - /** + /** * Add order-by as ascend.
* EXCLUDED_URLS: {VARCHAR(4000)} * @return this. (NotNull) @@ -824,7 +824,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getIncludedDocUrls(); } - /** + /** * Add order-by as ascend.
* INCLUDED_DOC_URLS: {VARCHAR(4000)} * @return this. (NotNull) @@ -858,7 +858,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getExcludedDocUrls(); } - /** + /** * Add order-by as ascend.
* EXCLUDED_DOC_URLS: {VARCHAR(4000)} * @return this. (NotNull) @@ -892,7 +892,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getConfigParameter(); } - /** + /** * Add order-by as ascend.
* CONFIG_PARAMETER: {VARCHAR(4000)} * @return this. (NotNull) @@ -926,7 +926,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getDepth(); } - /** + /** * Add order-by as ascend.
* DEPTH: {INTEGER(10)} * @return this. (NotNull) @@ -960,7 +960,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getMaxAccessCount(); } - /** + /** * Add order-by as ascend.
* MAX_ACCESS_COUNT: {BIGINT(19)} * @return this. (NotNull) @@ -994,7 +994,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getUserAgent(); } - /** + /** * Add order-by as ascend.
* USER_AGENT: {NotNull, VARCHAR(200)} * @return this. (NotNull) @@ -1028,7 +1028,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getNumOfThread(); } - /** + /** * Add order-by as ascend.
* NUM_OF_THREAD: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -1062,7 +1062,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getIntervalTime(); } - /** + /** * Add order-by as ascend.
* INTERVAL_TIME: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -1096,7 +1096,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getBoost(); } - /** + /** * Add order-by as ascend.
* BOOST: {NotNull, DOUBLE(17)} * @return this. (NotNull) @@ -1130,7 +1130,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getAvailable(); } - /** + /** * Add order-by as ascend.
* AVAILABLE: {NotNull, VARCHAR(1)} * @return this. (NotNull) @@ -1164,7 +1164,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getSortOrder(); } - /** + /** * Add order-by as ascend.
* SORT_ORDER: {NotNull, INTEGER(10)} * @return this. (NotNull) @@ -1198,7 +1198,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getCreatedBy(); } - /** + /** * Add order-by as ascend.
* CREATED_BY: {NotNull, VARCHAR(255)} * @return this. (NotNull) @@ -1232,7 +1232,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getCreatedTime(); } - /** + /** * Add order-by as ascend.
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -1266,7 +1266,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getUpdatedBy(); } - /** + /** * Add order-by as ascend.
* UPDATED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -1300,7 +1300,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getUpdatedTime(); } - /** + /** * Add order-by as ascend.
* UPDATED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -1334,7 +1334,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getDeletedBy(); } - /** + /** * Add order-by as ascend.
* DELETED_BY: {VARCHAR(255)} * @return this. (NotNull) @@ -1368,7 +1368,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getDeletedTime(); } - /** + /** * Add order-by as ascend.
* DELETED_TIME: {TIMESTAMP(23, 10)} * @return this. (NotNull) @@ -1402,7 +1402,7 @@ public class BsWebCrawlingConfigCQ extends AbstractBsWebCrawlingConfigCQ { return getVersionNo(); } - /** + /** * Add order-by as ascend.
* VERSION_NO: {NotNull, INTEGER(10)} * @return this. (NotNull) diff --git a/src/main/java/jp/sf/fess/entity/SearchQuery.java b/src/main/java/jp/sf/fess/entity/SearchQuery.java index d4d0af115..0522982aa 100644 --- a/src/main/java/jp/sf/fess/entity/SearchQuery.java +++ b/src/main/java/jp/sf/fess/entity/SearchQuery.java @@ -94,7 +94,7 @@ public class SearchQuery { return defType; } - public void setDefType(String defType) { + public void setDefType(final String defType) { this.defType = defType; } diff --git a/src/main/java/jp/sf/fess/helper/JobHelper.java b/src/main/java/jp/sf/fess/helper/JobHelper.java index 6c8d0e799..fc7d33d5c 100644 --- a/src/main/java/jp/sf/fess/helper/JobHelper.java +++ b/src/main/java/jp/sf/fess/helper/JobHelper.java @@ -72,10 +72,10 @@ public class JobHelper { protected void destroyCrawlerProcess(final JobProcess jobProcess) { if (jobProcess != null) { - InputStreamThread ist = jobProcess.getInputStreamThread(); + final InputStreamThread ist = jobProcess.getInputStreamThread(); try { ist.interrupt(); - } catch (Exception e) { + } catch (final Exception e) { logger.warn("Could not interrupt a thread of an input stream.", e); } @@ -109,7 +109,7 @@ public class JobHelper { try { latch.await(10, TimeUnit.SECONDS); - } catch (InterruptedException e) { + } catch (final InterruptedException e) { logger.warn("Interrupted to wait a process.", e); } try { diff --git a/src/main/java/jp/sf/fess/helper/OpenSearchHelper.java b/src/main/java/jp/sf/fess/helper/OpenSearchHelper.java index 539848c5b..892d6f7d1 100644 --- a/src/main/java/jp/sf/fess/helper/OpenSearchHelper.java +++ b/src/main/java/jp/sf/fess/helper/OpenSearchHelper.java @@ -35,7 +35,7 @@ import org.slf4j.LoggerFactory; /** * Helper class for Open Search Description Document. - * + * * @author shinsuke * */ diff --git a/src/main/java/jp/sf/fess/helper/RoleQueryHelper.java b/src/main/java/jp/sf/fess/helper/RoleQueryHelper.java index 49257048e..2890afd67 100644 --- a/src/main/java/jp/sf/fess/helper/RoleQueryHelper.java +++ b/src/main/java/jp/sf/fess/helper/RoleQueryHelper.java @@ -22,7 +22,7 @@ public interface RoleQueryHelper { /** * Returns roles. - * + * * @return a list of a role. (not null) */ Set build(); diff --git a/src/main/java/jp/sf/fess/helper/ViewHelper.java b/src/main/java/jp/sf/fess/helper/ViewHelper.java index 95e0986ed..37521f661 100644 --- a/src/main/java/jp/sf/fess/helper/ViewHelper.java +++ b/src/main/java/jp/sf/fess/helper/ViewHelper.java @@ -303,7 +303,7 @@ public class ViewHelper implements Serializable { final String[] queries = (String[]) RequestUtil.getRequest() .getAttribute(Constants.HIGHLIGHT_QUERIES); if (queries != null) { - StringBuilder buf = new StringBuilder(url.length() + 100); + final StringBuilder buf = new StringBuilder(url.length() + 100); buf.append(url).append("#search=%22"); for (int i = 0; i < queries.length; i++) { if (i != 0) { diff --git a/src/main/java/jp/sf/fess/helper/impl/RoleQueryHelperImpl.java b/src/main/java/jp/sf/fess/helper/impl/RoleQueryHelperImpl.java index 0c17f59de..93e65ecc2 100644 --- a/src/main/java/jp/sf/fess/helper/impl/RoleQueryHelperImpl.java +++ b/src/main/java/jp/sf/fess/helper/impl/RoleQueryHelperImpl.java @@ -43,7 +43,7 @@ import org.slf4j.LoggerFactory; * This class returns a list of a role from a request parameter, * a request header and a cookie. The format of the default value * is "[\d]+\nrole1,role2,role3", which you can encrypt. - * + * * @author shinsuke * */ diff --git a/src/main/java/jp/sf/fess/job/CrawlJob.java b/src/main/java/jp/sf/fess/job/CrawlJob.java index 7c109c9f4..5b9e22ca7 100644 --- a/src/main/java/jp/sf/fess/job/CrawlJob.java +++ b/src/main/java/jp/sf/fess/job/CrawlJob.java @@ -307,10 +307,10 @@ public class CrawlJob { final JobProcess jobProcess = jobHelper.startCrawlerProcess( sessionId, pb); - InputStreamThread it = jobProcess.getInputStreamThread(); + final InputStreamThread it = jobProcess.getInputStreamThread(); it.start(); - Process currentProcess = jobProcess.getProcess(); + final Process currentProcess = jobProcess.getProcess(); currentProcess.waitFor(); it.join(5000); diff --git a/src/main/java/jp/sf/fess/service/SearchService.java b/src/main/java/jp/sf/fess/service/SearchService.java index 688c79aff..c12e915df 100644 --- a/src/main/java/jp/sf/fess/service/SearchService.java +++ b/src/main/java/jp/sf/fess/service/SearchService.java @@ -295,7 +295,7 @@ public class SearchService implements Serializable { roleSet = new HashSet<>(); } - final List roleList = new ArrayList<>(roleSet); // TODO + final List roleList = new ArrayList<>(roleSet); // TODO final String suggestQuery = suggester.buildSuggestQuery(q, fieldNames, labels, roleList); diff --git a/src/main/java/jp/sf/fess/solr/FessSolrQueryException.java b/src/main/java/jp/sf/fess/solr/FessSolrQueryException.java index 9bdad4604..ac2bfeda6 100644 --- a/src/main/java/jp/sf/fess/solr/FessSolrQueryException.java +++ b/src/main/java/jp/sf/fess/solr/FessSolrQueryException.java @@ -20,7 +20,7 @@ import org.codelibs.solr.lib.exception.SolrLibQueryException; public class FessSolrQueryException extends SolrLibQueryException { /** - * + * */ private static final long serialVersionUID = 1L; diff --git a/src/main/java/jp/sf/fess/solr/policy/FessStatusPolicy.java b/src/main/java/jp/sf/fess/solr/policy/FessStatusPolicy.java index babaab51e..fe58dac83 100644 --- a/src/main/java/jp/sf/fess/solr/policy/FessStatusPolicy.java +++ b/src/main/java/jp/sf/fess/solr/policy/FessStatusPolicy.java @@ -70,7 +70,7 @@ public class FessStatusPolicy extends StatusPolicyImpl { case ROLLBACK: if (StringUtil.isNotBlank(indexValue) && UNFINISHED.equals(indexValue)) { - // index: UNFINISHED -> COMPLETED + // index: UNFINISHED -> COMPLETED dataMap.put("indexBefore", UNFINISHED.toUpperCase()); dataMap.put("indexAfter", COMPLETED.toUpperCase()); } @@ -79,7 +79,7 @@ public class FessStatusPolicy extends StatusPolicyImpl { case DELETE: if (StringUtil.isNotBlank(indexValue) && UNFINISHED.equals(indexValue)) { - // index: UNFINISHED -> READY + // index: UNFINISHED -> READY dataMap.put("indexBefore", UNFINISHED.toUpperCase()); dataMap.put("indexAfter", READY.toUpperCase()); } diff --git a/src/main/java/jp/sf/fess/transformer/AbstractFessFileTransformer.java b/src/main/java/jp/sf/fess/transformer/AbstractFessFileTransformer.java index f1ac27e1c..ce0597501 100644 --- a/src/main/java/jp/sf/fess/transformer/AbstractFessFileTransformer.java +++ b/src/main/java/jp/sf/fess/transformer/AbstractFessFileTransformer.java @@ -238,7 +238,7 @@ public abstract class AbstractFessFileTransformer extends } else { cache = content.trim().replaceAll("[ \\t\\x0B\\f]+", " "); } - // text cache + // text cache putResultDataBody(dataMap, "cache", cache); putResultDataBody(dataMap, systemHelper.hasCacheField, Constants.TRUE); diff --git a/src/main/java/jp/sf/fess/transformer/FessXpathTransformer.java b/src/main/java/jp/sf/fess/transformer/FessXpathTransformer.java index 34ccbb4e0..ea2beeed6 100644 --- a/src/main/java/jp/sf/fess/transformer/FessXpathTransformer.java +++ b/src/main/java/jp/sf/fess/transformer/FessXpathTransformer.java @@ -260,7 +260,7 @@ public class FessXpathTransformer extends AbstractFessXpathTransformer { charSet = Constants.UTF_8; } try { - // cache + // cache putResultDataBody( dataMap, "cache", diff --git a/src/main/java/jp/sf/fess/util/JobProcess.java b/src/main/java/jp/sf/fess/util/JobProcess.java index 46429f417..e655fc2e3 100644 --- a/src/main/java/jp/sf/fess/util/JobProcess.java +++ b/src/main/java/jp/sf/fess/util/JobProcess.java @@ -7,10 +7,10 @@ public class JobProcess { protected InputStreamThread inputStreamThread; - public JobProcess(Process process) { + public JobProcess(final Process process) { this.process = process; - this.inputStreamThread = new InputStreamThread( - process.getInputStream(), Constants.UTF_8); + inputStreamThread = new InputStreamThread(process.getInputStream(), + Constants.UTF_8); } public Process getProcess() {