fix a code format.

This commit is contained in:
Shinsuke Sugaya 2014-05-24 21:47:05 +09:00
parent df6089e5b5
commit 64f1ec2ee2
138 changed files with 1774 additions and 1774 deletions

View file

@ -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;

View file

@ -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;

View file

@ -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. <br />
* 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)
*/

View file

@ -106,7 +106,7 @@ public class DBFluteInitializer {
}
}
protected void loadCoolClasses() { // for S2Container
protected void loadCoolClasses() { // for S2Container
ConditionBeanContext.loadCoolClasses(); // against the ClassLoader Headache!
}

View file

@ -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

View file

@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(clickLog);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(clickLog);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* clickLogBhv.<span style="color: #FD4747">batchUpdate</span>(clickLogList, new SpecifyQuery<ClickLogCB>() {
* public void specify(ClickLogCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* clickLogBhv.<span style="color: #FD4747">batchUpdate</span>(clickLogList, new SpecifyQuery<ClickLogCB>() {
* public void specify(ClickLogCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -926,7 +926,7 @@ public abstract class BsClickLogBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(clickLog entity, ClickLogCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -937,7 +937,7 @@ public abstract class BsClickLogBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<ClickLogBhv> outsideSql() {
return doOutsideSql();

View file

@ -47,28 +47,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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
* </pre>
@ -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.<span style="color: #FD4747">update</span>(crawlingSession);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(crawlingSession);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* crawlingSessionBhv.<span style="color: #FD4747">batchUpdate</span>(crawlingSessionList, new SpecifyQuery<CrawlingSessionCB>() {
* public void specify(CrawlingSessionCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* crawlingSessionBhv.<span style="color: #FD4747">batchUpdate</span>(crawlingSessionList, new SpecifyQuery<CrawlingSessionCB>() {
* public void specify(CrawlingSessionCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1062,7 +1062,7 @@ public abstract class BsCrawlingSessionBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(crawlingSession entity, CrawlingSessionCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1073,7 +1073,7 @@ public abstract class BsCrawlingSessionBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<CrawlingSessionBhv> outsideSql() {
return doOutsideSql();

View file

@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(crawlingSessionInfo);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(crawlingSessionInfo);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* crawlingSessionInfoBhv.<span style="color: #FD4747">batchUpdate</span>(crawlingSessionInfoList, new SpecifyQuery<CrawlingSessionInfoCB>() {
* public void specify(CrawlingSessionInfoCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* crawlingSessionInfoBhv.<span style="color: #FD4747">batchUpdate</span>(crawlingSessionInfoList, new SpecifyQuery<CrawlingSessionInfoCB>() {
* public void specify(CrawlingSessionInfoCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -965,7 +965,7 @@ public abstract class BsCrawlingSessionInfoBhv extends AbstractBehaviorWritable
* public ConditionBean setup(crawlingSessionInfo entity, CrawlingSessionInfoCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -976,7 +976,7 @@ public abstract class BsCrawlingSessionInfoBhv extends AbstractBehaviorWritable
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<CrawlingSessionInfoBhv> outsideSql() {
return doOutsideSql();

View file

@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(dataConfigToLabelTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(dataConfigToLabelTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* dataConfigToLabelTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(dataConfigToLabelTypeMappingList, new SpecifyQuery<DataConfigToLabelTypeMappingCB>() {
* public void specify(DataConfigToLabelTypeMappingCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* dataConfigToLabelTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(dataConfigToLabelTypeMappingList, new SpecifyQuery<DataConfigToLabelTypeMappingCB>() {
* public void specify(DataConfigToLabelTypeMappingCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1021,7 +1021,7 @@ public abstract class BsDataConfigToLabelTypeMappingBhv extends
* public ConditionBean setup(dataConfigToLabelTypeMapping entity, DataConfigToLabelTypeMappingCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1032,7 +1032,7 @@ public abstract class BsDataConfigToLabelTypeMappingBhv extends
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<DataConfigToLabelTypeMappingBhv> outsideSql() {
return doOutsideSql();

View file

@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(dataConfigToRoleTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(dataConfigToRoleTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* dataConfigToRoleTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(dataConfigToRoleTypeMappingList, new SpecifyQuery<DataConfigToRoleTypeMappingCB>() {
* public void specify(DataConfigToRoleTypeMappingCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* dataConfigToRoleTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(dataConfigToRoleTypeMappingList, new SpecifyQuery<DataConfigToRoleTypeMappingCB>() {
* public void specify(DataConfigToRoleTypeMappingCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1020,7 +1020,7 @@ public abstract class BsDataConfigToRoleTypeMappingBhv extends
* public ConditionBean setup(dataConfigToRoleTypeMapping entity, DataConfigToRoleTypeMappingCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1031,7 +1031,7 @@ public abstract class BsDataConfigToRoleTypeMappingBhv extends
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<DataConfigToRoleTypeMappingBhv> outsideSql() {
return doOutsideSql();

View file

@ -50,28 +50,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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
* </pre>
@ -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.<span style="color: #FD4747">update</span>(dataCrawlingConfig);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(dataCrawlingConfig);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* dataCrawlingConfigBhv.<span style="color: #FD4747">batchUpdate</span>(dataCrawlingConfigList, new SpecifyQuery<DataCrawlingConfigCB>() {
* public void specify(DataCrawlingConfigCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* dataCrawlingConfigBhv.<span style="color: #FD4747">batchUpdate</span>(dataCrawlingConfigList, new SpecifyQuery<DataCrawlingConfigCB>() {
* public void specify(DataCrawlingConfigCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1351,14 +1351,14 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable {
* Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* dataCrawlingConfigBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(dataCrawlingConfigList, new SpecifyQuery<DataCrawlingConfigCB>() {
* public void specify(DataCrawlingConfigCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* dataCrawlingConfigBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(dataCrawlingConfigList, new SpecifyQuery<DataCrawlingConfigCB>() {
* public void specify(DataCrawlingConfigCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1461,7 +1461,7 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(dataCrawlingConfig entity, DataCrawlingConfigCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1472,7 +1472,7 @@ public abstract class BsDataCrawlingConfigBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<DataCrawlingConfigBhv> outsideSql() {
return doOutsideSql();

View file

@ -42,30 +42,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(failureUrl);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(failureUrl);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* failureUrlBhv.<span style="color: #FD4747">batchUpdate</span>(failureUrlList, new SpecifyQuery<FailureUrlCB>() {
* public void specify(FailureUrlCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* failureUrlBhv.<span style="color: #FD4747">batchUpdate</span>(failureUrlList, new SpecifyQuery<FailureUrlCB>() {
* public void specify(FailureUrlCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -906,7 +906,7 @@ public abstract class BsFailureUrlBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(failureUrl entity, FailureUrlCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -917,7 +917,7 @@ public abstract class BsFailureUrlBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<FailureUrlBhv> outsideSql() {
return doOutsideSql();

View file

@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(favoriteLog);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(favoriteLog);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* favoriteLogBhv.<span style="color: #FD4747">batchUpdate</span>(favoriteLogList, new SpecifyQuery<FavoriteLogCB>() {
* public void specify(FavoriteLogCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* favoriteLogBhv.<span style="color: #FD4747">batchUpdate</span>(favoriteLogList, new SpecifyQuery<FavoriteLogCB>() {
* public void specify(FavoriteLogCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -938,7 +938,7 @@ public abstract class BsFavoriteLogBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(favoriteLog entity, FavoriteLogCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -949,7 +949,7 @@ public abstract class BsFavoriteLogBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<FavoriteLogBhv> outsideSql() {
return doOutsideSql();

View file

@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(fileAuthentication);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(fileAuthentication);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* fileAuthenticationBhv.<span style="color: #FD4747">batchUpdate</span>(fileAuthenticationList, new SpecifyQuery<FileAuthenticationCB>() {
* public void specify(FileAuthenticationCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* fileAuthenticationBhv.<span style="color: #FD4747">batchUpdate</span>(fileAuthenticationList, new SpecifyQuery<FileAuthenticationCB>() {
* public void specify(FileAuthenticationCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1099,14 +1099,14 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable {
* Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* fileAuthenticationBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(fileAuthenticationList, new SpecifyQuery<FileAuthenticationCB>() {
* public void specify(FileAuthenticationCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* fileAuthenticationBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(fileAuthenticationList, new SpecifyQuery<FileAuthenticationCB>() {
* public void specify(FileAuthenticationCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1209,7 +1209,7 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(fileAuthentication entity, FileAuthenticationCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1220,7 +1220,7 @@ public abstract class BsFileAuthenticationBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<FileAuthenticationBhv> outsideSql() {
return doOutsideSql();

View file

@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(fileConfigToLabelTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(fileConfigToLabelTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* fileConfigToLabelTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(fileConfigToLabelTypeMappingList, new SpecifyQuery<FileConfigToLabelTypeMappingCB>() {
* public void specify(FileConfigToLabelTypeMappingCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* fileConfigToLabelTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(fileConfigToLabelTypeMappingList, new SpecifyQuery<FileConfigToLabelTypeMappingCB>() {
* public void specify(FileConfigToLabelTypeMappingCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1021,7 +1021,7 @@ public abstract class BsFileConfigToLabelTypeMappingBhv extends
* public ConditionBean setup(fileConfigToLabelTypeMapping entity, FileConfigToLabelTypeMappingCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1032,7 +1032,7 @@ public abstract class BsFileConfigToLabelTypeMappingBhv extends
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<FileConfigToLabelTypeMappingBhv> outsideSql() {
return doOutsideSql();

View file

@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(fileConfigToRoleTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(fileConfigToRoleTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* fileConfigToRoleTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(fileConfigToRoleTypeMappingList, new SpecifyQuery<FileConfigToRoleTypeMappingCB>() {
* public void specify(FileConfigToRoleTypeMappingCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* fileConfigToRoleTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(fileConfigToRoleTypeMappingList, new SpecifyQuery<FileConfigToRoleTypeMappingCB>() {
* public void specify(FileConfigToRoleTypeMappingCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1020,7 +1020,7 @@ public abstract class BsFileConfigToRoleTypeMappingBhv extends
* public ConditionBean setup(fileConfigToRoleTypeMapping entity, FileConfigToRoleTypeMappingCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1031,7 +1031,7 @@ public abstract class BsFileConfigToRoleTypeMappingBhv extends
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<FileConfigToRoleTypeMappingBhv> outsideSql() {
return doOutsideSql();

View file

@ -53,28 +53,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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
* </pre>
@ -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.<span style="color: #FD4747">update</span>(fileCrawlingConfig);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(fileCrawlingConfig);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* fileCrawlingConfigBhv.<span style="color: #FD4747">batchUpdate</span>(fileCrawlingConfigList, new SpecifyQuery<FileCrawlingConfigCB>() {
* public void specify(FileCrawlingConfigCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* fileCrawlingConfigBhv.<span style="color: #FD4747">batchUpdate</span>(fileCrawlingConfigList, new SpecifyQuery<FileCrawlingConfigCB>() {
* public void specify(FileCrawlingConfigCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1488,14 +1488,14 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable {
* Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* fileCrawlingConfigBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(fileCrawlingConfigList, new SpecifyQuery<FileCrawlingConfigCB>() {
* public void specify(FileCrawlingConfigCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* fileCrawlingConfigBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(fileCrawlingConfigList, new SpecifyQuery<FileCrawlingConfigCB>() {
* public void specify(FileCrawlingConfigCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1598,7 +1598,7 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(fileCrawlingConfig entity, FileCrawlingConfigCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1609,7 +1609,7 @@ public abstract class BsFileCrawlingConfigBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<FileCrawlingConfigBhv> outsideSql() {
return doOutsideSql();

View file

@ -42,30 +42,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(jobLog);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(jobLog);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* jobLogBhv.<span style="color: #FD4747">batchUpdate</span>(jobLogList, new SpecifyQuery<JobLogCB>() {
* public void specify(JobLogCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* jobLogBhv.<span style="color: #FD4747">batchUpdate</span>(jobLogList, new SpecifyQuery<JobLogCB>() {
* public void specify(JobLogCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -897,7 +897,7 @@ public abstract class BsJobLogBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(jobLog entity, JobLogCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -908,7 +908,7 @@ public abstract class BsJobLogBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<JobLogBhv> outsideSql() {
return doOutsideSql();

View file

@ -56,28 +56,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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
* </pre>
@ -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.<span style="color: #FD4747">update</span>(labelType);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(labelType);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* labelTypeBhv.<span style="color: #FD4747">batchUpdate</span>(labelTypeList, new SpecifyQuery<LabelTypeCB>() {
* public void specify(LabelTypeCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* labelTypeBhv.<span style="color: #FD4747">batchUpdate</span>(labelTypeList, new SpecifyQuery<LabelTypeCB>() {
* public void specify(LabelTypeCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1587,14 +1587,14 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable {
* Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* labelTypeBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(labelTypeList, new SpecifyQuery<LabelTypeCB>() {
* public void specify(LabelTypeCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* labelTypeBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(labelTypeList, new SpecifyQuery<LabelTypeCB>() {
* public void specify(LabelTypeCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1692,7 +1692,7 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(labelType entity, LabelTypeCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1703,7 +1703,7 @@ public abstract class BsLabelTypeBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<LabelTypeBhv> outsideSql() {
return doOutsideSql();

View file

@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(labelTypeToRoleTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(labelTypeToRoleTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* labelTypeToRoleTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(labelTypeToRoleTypeMappingList, new SpecifyQuery<LabelTypeToRoleTypeMappingCB>() {
* public void specify(LabelTypeToRoleTypeMappingCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* labelTypeToRoleTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(labelTypeToRoleTypeMappingList, new SpecifyQuery<LabelTypeToRoleTypeMappingCB>() {
* public void specify(LabelTypeToRoleTypeMappingCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1019,7 +1019,7 @@ public abstract class BsLabelTypeToRoleTypeMappingBhv extends
* public ConditionBean setup(labelTypeToRoleTypeMapping entity, LabelTypeToRoleTypeMappingCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1030,7 +1030,7 @@ public abstract class BsLabelTypeToRoleTypeMappingBhv extends
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<LabelTypeToRoleTypeMappingBhv> outsideSql() {
return doOutsideSql();

View file

@ -42,30 +42,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(overlappingHost);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(overlappingHost);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* overlappingHostBhv.<span style="color: #FD4747">batchUpdate</span>(overlappingHostList, new SpecifyQuery<OverlappingHostCB>() {
* public void specify(OverlappingHostCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* overlappingHostBhv.<span style="color: #FD4747">batchUpdate</span>(overlappingHostList, new SpecifyQuery<OverlappingHostCB>() {
* public void specify(OverlappingHostCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1057,14 +1057,14 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable {
* Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* overlappingHostBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(overlappingHostList, new SpecifyQuery<OverlappingHostCB>() {
* public void specify(OverlappingHostCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* overlappingHostBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(overlappingHostList, new SpecifyQuery<OverlappingHostCB>() {
* public void specify(OverlappingHostCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1166,7 +1166,7 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(overlappingHost entity, OverlappingHostCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1177,7 +1177,7 @@ public abstract class BsOverlappingHostBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<OverlappingHostBhv> outsideSql() {
return doOutsideSql();

View file

@ -42,30 +42,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(pathMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(pathMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* pathMappingBhv.<span style="color: #FD4747">batchUpdate</span>(pathMappingList, new SpecifyQuery<PathMappingCB>() {
* public void specify(PathMappingCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* pathMappingBhv.<span style="color: #FD4747">batchUpdate</span>(pathMappingList, new SpecifyQuery<PathMappingCB>() {
* public void specify(PathMappingCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1041,14 +1041,14 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable {
* Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* pathMappingBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(pathMappingList, new SpecifyQuery<PathMappingCB>() {
* public void specify(PathMappingCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* pathMappingBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(pathMappingList, new SpecifyQuery<PathMappingCB>() {
* public void specify(PathMappingCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1147,7 +1147,7 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(pathMapping entity, PathMappingCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1158,7 +1158,7 @@ public abstract class BsPathMappingBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<PathMappingBhv> outsideSql() {
return doOutsideSql();

View file

@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(requestHeader);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(requestHeader);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* requestHeaderBhv.<span style="color: #FD4747">batchUpdate</span>(requestHeaderList, new SpecifyQuery<RequestHeaderCB>() {
* public void specify(RequestHeaderCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* requestHeaderBhv.<span style="color: #FD4747">batchUpdate</span>(requestHeaderList, new SpecifyQuery<RequestHeaderCB>() {
* public void specify(RequestHeaderCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1074,14 +1074,14 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable {
* Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* requestHeaderBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(requestHeaderList, new SpecifyQuery<RequestHeaderCB>() {
* public void specify(RequestHeaderCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* requestHeaderBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(requestHeaderList, new SpecifyQuery<RequestHeaderCB>() {
* public void specify(RequestHeaderCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1182,7 +1182,7 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(requestHeader entity, RequestHeaderCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1193,7 +1193,7 @@ public abstract class BsRequestHeaderBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<RequestHeaderBhv> outsideSql() {
return doOutsideSql();

View file

@ -56,28 +56,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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
* </pre>
@ -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.<span style="color: #FD4747">update</span>(roleType);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(roleType);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* roleTypeBhv.<span style="color: #FD4747">batchUpdate</span>(roleTypeList, new SpecifyQuery<RoleTypeCB>() {
* public void specify(RoleTypeCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* roleTypeBhv.<span style="color: #FD4747">batchUpdate</span>(roleTypeList, new SpecifyQuery<RoleTypeCB>() {
* public void specify(RoleTypeCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1582,14 +1582,14 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable {
* Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* roleTypeBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(roleTypeList, new SpecifyQuery<RoleTypeCB>() {
* public void specify(RoleTypeCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* roleTypeBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(roleTypeList, new SpecifyQuery<RoleTypeCB>() {
* public void specify(RoleTypeCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1687,7 +1687,7 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(roleType entity, RoleTypeCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1698,7 +1698,7 @@ public abstract class BsRoleTypeBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<RoleTypeBhv> outsideSql() {
return doOutsideSql();

View file

@ -42,30 +42,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(scheduledJob);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(scheduledJob);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* scheduledJobBhv.<span style="color: #FD4747">batchUpdate</span>(scheduledJobList, new SpecifyQuery<ScheduledJobCB>() {
* public void specify(ScheduledJobCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* scheduledJobBhv.<span style="color: #FD4747">batchUpdate</span>(scheduledJobList, new SpecifyQuery<ScheduledJobCB>() {
* public void specify(ScheduledJobCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1042,14 +1042,14 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable {
* Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* scheduledJobBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(scheduledJobList, new SpecifyQuery<ScheduledJobCB>() {
* public void specify(ScheduledJobCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* scheduledJobBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(scheduledJobList, new SpecifyQuery<ScheduledJobCB>() {
* public void specify(ScheduledJobCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1149,7 +1149,7 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(scheduledJob entity, ScheduledJobCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1160,7 +1160,7 @@ public abstract class BsScheduledJobBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<ScheduledJobBhv> outsideSql() {
return doOutsideSql();

View file

@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(searchFieldLog);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(searchFieldLog);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* searchFieldLogBhv.<span style="color: #FD4747">batchUpdate</span>(searchFieldLogList, new SpecifyQuery<SearchFieldLogCB>() {
* public void specify(SearchFieldLogCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* searchFieldLogBhv.<span style="color: #FD4747">batchUpdate</span>(searchFieldLogList, new SpecifyQuery<SearchFieldLogCB>() {
* public void specify(SearchFieldLogCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -946,7 +946,7 @@ public abstract class BsSearchFieldLogBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(searchFieldLog entity, SearchFieldLogCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -957,7 +957,7 @@ public abstract class BsSearchFieldLogBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<SearchFieldLogBhv> outsideSql() {
return doOutsideSql();

View file

@ -51,28 +51,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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
* </pre>
@ -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.<span style="color: #FD4747">update</span>(searchLog);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(searchLog);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* searchLogBhv.<span style="color: #FD4747">batchUpdate</span>(searchLogList, new SpecifyQuery<SearchLogCB>() {
* public void specify(SearchLogCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* searchLogBhv.<span style="color: #FD4747">batchUpdate</span>(searchLogList, new SpecifyQuery<SearchLogCB>() {
* public void specify(SearchLogCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1206,7 +1206,7 @@ public abstract class BsSearchLogBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(searchLog entity, SearchLogCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1217,7 +1217,7 @@ public abstract class BsSearchLogBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<SearchLogBhv> outsideSql() {
return doOutsideSql();

View file

@ -50,28 +50,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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
* </pre>
@ -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.<span style="color: #FD4747">update</span>(userInfo);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(userInfo);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* userInfoBhv.<span style="color: #FD4747">batchUpdate</span>(userInfoList, new SpecifyQuery<UserInfoCB>() {
* public void specify(UserInfoCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* userInfoBhv.<span style="color: #FD4747">batchUpdate</span>(userInfoList, new SpecifyQuery<UserInfoCB>() {
* public void specify(UserInfoCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1159,7 +1159,7 @@ public abstract class BsUserInfoBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(userInfo entity, UserInfoCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1170,7 +1170,7 @@ public abstract class BsUserInfoBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<UserInfoBhv> outsideSql() {
return doOutsideSql();

View file

@ -43,30 +43,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(webAuthentication);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(webAuthentication);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* webAuthenticationBhv.<span style="color: #FD4747">batchUpdate</span>(webAuthenticationList, new SpecifyQuery<WebAuthenticationCB>() {
* public void specify(WebAuthenticationCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* webAuthenticationBhv.<span style="color: #FD4747">batchUpdate</span>(webAuthenticationList, new SpecifyQuery<WebAuthenticationCB>() {
* public void specify(WebAuthenticationCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1094,14 +1094,14 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable {
* Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* webAuthenticationBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(webAuthenticationList, new SpecifyQuery<WebAuthenticationCB>() {
* public void specify(WebAuthenticationCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* webAuthenticationBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(webAuthenticationList, new SpecifyQuery<WebAuthenticationCB>() {
* public void specify(WebAuthenticationCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1203,7 +1203,7 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(webAuthentication entity, WebAuthenticationCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1214,7 +1214,7 @@ public abstract class BsWebAuthenticationBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<WebAuthenticationBhv> outsideSql() {
return doOutsideSql();

View file

@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(webConfigToLabelTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(webConfigToLabelTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* webConfigToLabelTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(webConfigToLabelTypeMappingList, new SpecifyQuery<WebConfigToLabelTypeMappingCB>() {
* public void specify(WebConfigToLabelTypeMappingCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* webConfigToLabelTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(webConfigToLabelTypeMappingList, new SpecifyQuery<WebConfigToLabelTypeMappingCB>() {
* public void specify(WebConfigToLabelTypeMappingCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1020,7 +1020,7 @@ public abstract class BsWebConfigToLabelTypeMappingBhv extends
* public ConditionBean setup(webConfigToLabelTypeMapping entity, WebConfigToLabelTypeMappingCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1031,7 +1031,7 @@ public abstract class BsWebConfigToLabelTypeMappingBhv extends
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<WebConfigToLabelTypeMappingBhv> outsideSql() {
return doOutsideSql();

View file

@ -44,30 +44,30 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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]
*
*
* </pre>
* @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.<span style="color: #FD4747">update</span>(webConfigToRoleTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(webConfigToRoleTypeMapping);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* webConfigToRoleTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(webConfigToRoleTypeMappingList, new SpecifyQuery<WebConfigToRoleTypeMappingCB>() {
* public void specify(WebConfigToRoleTypeMappingCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* webConfigToRoleTypeMappingBhv.<span style="color: #FD4747">batchUpdate</span>(webConfigToRoleTypeMappingList, new SpecifyQuery<WebConfigToRoleTypeMappingCB>() {
* public void specify(WebConfigToRoleTypeMappingCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1020,7 +1020,7 @@ public abstract class BsWebConfigToRoleTypeMappingBhv extends
* public ConditionBean setup(webConfigToRoleTypeMapping entity, WebConfigToRoleTypeMappingCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1031,7 +1031,7 @@ public abstract class BsWebConfigToRoleTypeMappingBhv extends
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<WebConfigToRoleTypeMappingBhv> outsideSql() {
return doOutsideSql();

View file

@ -56,28 +56,28 @@ import org.seasar.dbflute.outsidesql.executor.OutsideSqlBasicExecutor;
* <pre>
* [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
* </pre>
@ -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.<span style="color: #FD4747">update</span>(webCrawlingConfig);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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.<span style="color: #FD4747">delete</span>(webCrawlingConfig);
* } catch (EntityAlreadyUpdatedException e) { <span style="color: #3F7E5E">// if concurrent update</span>
* ...
* }
* }
* </pre>
* @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) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* webCrawlingConfigBhv.<span style="color: #FD4747">batchUpdate</span>(webCrawlingConfigList, new SpecifyQuery<WebCrawlingConfigCB>() {
* public void specify(WebCrawlingConfigCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* webCrawlingConfigBhv.<span style="color: #FD4747">batchUpdate</span>(webCrawlingConfigList, new SpecifyQuery<WebCrawlingConfigCB>() {
* public void specify(WebCrawlingConfigCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1616,14 +1616,14 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable {
* Batch-update the entity list non-strictly. (SpecifiedColumnsUpdated, NonExclusiveControl) <br />
* This method uses executeBatch() of java.sql.PreparedStatement.
* <pre>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* <span style="color: #3F7E5E">// e.g. update two columns only</span>
* webCrawlingConfigBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(webCrawlingConfigList, new SpecifyQuery<WebCrawlingConfigCB>() {
* public void specify(WebCrawlingConfigCB cb) { <span style="color: #3F7E5E">// the two only updated</span>
* cb.specify().<span style="color: #FD4747">columnFooStatusCode()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* cb.specify().<span style="color: #FD4747">columnBarDate()</span>; <span style="color: #3F7E5E">// should be modified in any entities</span>
* }
* });
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* <span style="color: #3F7E5E">// e.g. update every column in the table</span>
* webCrawlingConfigBhv.<span style="color: #FD4747">batchUpdateNonstrict</span>(webCrawlingConfigList, new SpecifyQuery<WebCrawlingConfigCB>() {
* public void specify(WebCrawlingConfigCB cb) { <span style="color: #3F7E5E">// all columns are updated</span>
* cb.specify().<span style="color: #FD4747">columnEveryColumn()</span>; <span style="color: #3F7E5E">// no check of modified properties</span>
@ -1725,7 +1725,7 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable {
* public ConditionBean setup(webCrawlingConfig entity, WebCrawlingConfigCB intoCB) {
* FooCB cb = FooCB();
* cb.setupSelect_Bar();
*
*
* <span style="color: #3F7E5E">// mapping</span>
* intoCB.specify().columnMyName().mappedFrom(cb.specify().columnFooName());
* intoCB.specify().columnMyCount().mappedFrom(cb.specify().columnFooCount());
@ -1736,7 +1736,7 @@ public abstract class BsWebCrawlingConfigBhv extends AbstractBehaviorWritable {
* <span style="color: #3F7E5E">//entity.set...;</span>
* <span style="color: #3F7E5E">// you don't need to set a value of exclusive control column</span>
* <span style="color: #3F7E5E">//entity.setVersionNo(value);</span>
*
*
* 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). <br />
* For example, disableCommonColumnAutoSetup(), disablePrimaryKeyIdentity(). <br />
* 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} <br />
* For example, self(selfCalculationSpecification), specify(updateColumnSpecification)
* , disableCommonColumnAutoSetup(), allowNonQueryUpdate(). <br />
* Other specifications are same as queryUpdate(entity, cb).
* Other specifications are same as queryUpdate(entity, cb).
* <pre>
* <span style="color: #3F7E5E">// ex) you can update by self calculation values</span>
* 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()
* </pre>
* @return The basic executor of outside-SQL. (NotNull)
* @return The basic executor of outside-SQL. (NotNull)
*/
public OutsideSqlBasicExecutor<WebCrawlingConfigBhv> outsideSql() {
return doOutsideSql();

View file

@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -32,31 +32,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -35,31 +35,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -32,31 +32,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -36,31 +36,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -32,31 +32,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -36,31 +36,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -32,31 +32,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -36,31 +36,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -33,31 +33,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -34,31 +34,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -36,31 +36,31 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of ClickUrlRanking. <br />
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of ClientIpRanking. <br />
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of FavoriteUrlCount. <br />
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of FavoriteUrlRanking. <br />
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of GroupedFieldName. <br />
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of HotSearchWord. <br />
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of RefererRanking. <br />
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of SearchFieldRanking. <br />
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of SearchQueryRanking. <br />
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of SearchWordRanking. <br />
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of SolrQueryRanking. <br />
* <pre>
* [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

View file

@ -30,32 +30,32 @@ import org.seasar.dbflute.dbmeta.DBMeta;
* The entity of UserAgentRanking. <br />
* <pre>
* [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

View file

@ -156,7 +156,7 @@ public class BsClickLogCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -165,7 +165,7 @@ public class BsClickLogCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -174,7 +174,7 @@ public class BsClickLogCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -182,7 +182,7 @@ public class BsClickLogCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -190,14 +190,14 @@ public class BsClickLogCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -154,7 +154,7 @@ public class BsCrawlingSessionCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -163,7 +163,7 @@ public class BsCrawlingSessionCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -172,7 +172,7 @@ public class BsCrawlingSessionCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -180,7 +180,7 @@ public class BsCrawlingSessionCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -188,14 +188,14 @@ public class BsCrawlingSessionCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -156,7 +156,7 @@ public class BsCrawlingSessionInfoCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -165,7 +165,7 @@ public class BsCrawlingSessionInfoCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -174,7 +174,7 @@ public class BsCrawlingSessionInfoCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -182,7 +182,7 @@ public class BsCrawlingSessionInfoCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -190,14 +190,14 @@ public class BsCrawlingSessionInfoCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -159,7 +159,7 @@ public class BsDataConfigToLabelTypeMappingCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -168,7 +168,7 @@ public class BsDataConfigToLabelTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -177,7 +177,7 @@ public class BsDataConfigToLabelTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -185,7 +185,7 @@ public class BsDataConfigToLabelTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -193,14 +193,14 @@ public class BsDataConfigToLabelTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -159,7 +159,7 @@ public class BsDataConfigToRoleTypeMappingCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -168,7 +168,7 @@ public class BsDataConfigToRoleTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -177,7 +177,7 @@ public class BsDataConfigToRoleTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -185,7 +185,7 @@ public class BsDataConfigToRoleTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -193,14 +193,14 @@ public class BsDataConfigToRoleTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -155,7 +155,7 @@ public class BsDataCrawlingConfigCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -164,7 +164,7 @@ public class BsDataCrawlingConfigCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -173,7 +173,7 @@ public class BsDataCrawlingConfigCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -181,7 +181,7 @@ public class BsDataCrawlingConfigCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -189,14 +189,14 @@ public class BsDataCrawlingConfigCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -153,7 +153,7 @@ public class BsFailureUrlCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -162,7 +162,7 @@ public class BsFailureUrlCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -171,7 +171,7 @@ public class BsFailureUrlCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -179,7 +179,7 @@ public class BsFailureUrlCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -187,14 +187,14 @@ public class BsFailureUrlCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -156,7 +156,7 @@ public class BsFavoriteLogCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -165,7 +165,7 @@ public class BsFavoriteLogCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -174,7 +174,7 @@ public class BsFavoriteLogCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -182,7 +182,7 @@ public class BsFavoriteLogCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -190,14 +190,14 @@ public class BsFavoriteLogCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -156,7 +156,7 @@ public class BsFileAuthenticationCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -165,7 +165,7 @@ public class BsFileAuthenticationCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -174,7 +174,7 @@ public class BsFileAuthenticationCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -182,7 +182,7 @@ public class BsFileAuthenticationCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -190,14 +190,14 @@ public class BsFileAuthenticationCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -159,7 +159,7 @@ public class BsFileConfigToLabelTypeMappingCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -168,7 +168,7 @@ public class BsFileConfigToLabelTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -177,7 +177,7 @@ public class BsFileConfigToLabelTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -185,7 +185,7 @@ public class BsFileConfigToLabelTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -193,14 +193,14 @@ public class BsFileConfigToLabelTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -159,7 +159,7 @@ public class BsFileConfigToRoleTypeMappingCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -168,7 +168,7 @@ public class BsFileConfigToRoleTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -177,7 +177,7 @@ public class BsFileConfigToRoleTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -185,7 +185,7 @@ public class BsFileConfigToRoleTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -193,14 +193,14 @@ public class BsFileConfigToRoleTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -156,7 +156,7 @@ public class BsFileCrawlingConfigCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -165,7 +165,7 @@ public class BsFileCrawlingConfigCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -174,7 +174,7 @@ public class BsFileCrawlingConfigCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -182,7 +182,7 @@ public class BsFileCrawlingConfigCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -190,14 +190,14 @@ public class BsFileCrawlingConfigCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -153,7 +153,7 @@ public class BsJobLogCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -162,7 +162,7 @@ public class BsJobLogCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -171,7 +171,7 @@ public class BsJobLogCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -179,7 +179,7 @@ public class BsJobLogCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -187,14 +187,14 @@ public class BsJobLogCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -157,7 +157,7 @@ public class BsLabelTypeCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -166,7 +166,7 @@ public class BsLabelTypeCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -175,7 +175,7 @@ public class BsLabelTypeCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -183,7 +183,7 @@ public class BsLabelTypeCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -191,14 +191,14 @@ public class BsLabelTypeCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -159,7 +159,7 @@ public class BsLabelTypeToRoleTypeMappingCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -168,7 +168,7 @@ public class BsLabelTypeToRoleTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -177,7 +177,7 @@ public class BsLabelTypeToRoleTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -185,7 +185,7 @@ public class BsLabelTypeToRoleTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -193,14 +193,14 @@ public class BsLabelTypeToRoleTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -153,7 +153,7 @@ public class BsOverlappingHostCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -162,7 +162,7 @@ public class BsOverlappingHostCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -171,7 +171,7 @@ public class BsOverlappingHostCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -179,7 +179,7 @@ public class BsOverlappingHostCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -187,14 +187,14 @@ public class BsOverlappingHostCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -153,7 +153,7 @@ public class BsPathMappingCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -162,7 +162,7 @@ public class BsPathMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -171,7 +171,7 @@ public class BsPathMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -179,7 +179,7 @@ public class BsPathMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -187,14 +187,14 @@ public class BsPathMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -156,7 +156,7 @@ public class BsRequestHeaderCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -165,7 +165,7 @@ public class BsRequestHeaderCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -174,7 +174,7 @@ public class BsRequestHeaderCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -182,7 +182,7 @@ public class BsRequestHeaderCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -190,14 +190,14 @@ public class BsRequestHeaderCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -157,7 +157,7 @@ public class BsRoleTypeCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -166,7 +166,7 @@ public class BsRoleTypeCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -175,7 +175,7 @@ public class BsRoleTypeCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -183,7 +183,7 @@ public class BsRoleTypeCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -191,14 +191,14 @@ public class BsRoleTypeCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -153,7 +153,7 @@ public class BsScheduledJobCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -162,7 +162,7 @@ public class BsScheduledJobCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -171,7 +171,7 @@ public class BsScheduledJobCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -179,7 +179,7 @@ public class BsScheduledJobCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -187,14 +187,14 @@ public class BsScheduledJobCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -156,7 +156,7 @@ public class BsSearchFieldLogCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -165,7 +165,7 @@ public class BsSearchFieldLogCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -174,7 +174,7 @@ public class BsSearchFieldLogCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -182,7 +182,7 @@ public class BsSearchFieldLogCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -190,14 +190,14 @@ public class BsSearchFieldLogCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -158,7 +158,7 @@ public class BsSearchLogCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -167,7 +167,7 @@ public class BsSearchLogCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -176,7 +176,7 @@ public class BsSearchLogCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -184,7 +184,7 @@ public class BsSearchLogCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -192,14 +192,14 @@ public class BsSearchLogCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -155,7 +155,7 @@ public class BsUserInfoCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -164,7 +164,7 @@ public class BsUserInfoCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -173,7 +173,7 @@ public class BsUserInfoCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -181,7 +181,7 @@ public class BsUserInfoCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -189,14 +189,14 @@ public class BsUserInfoCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -156,7 +156,7 @@ public class BsWebAuthenticationCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -165,7 +165,7 @@ public class BsWebAuthenticationCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -174,7 +174,7 @@ public class BsWebAuthenticationCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -182,7 +182,7 @@ public class BsWebAuthenticationCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -190,14 +190,14 @@ public class BsWebAuthenticationCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -159,7 +159,7 @@ public class BsWebConfigToLabelTypeMappingCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -168,7 +168,7 @@ public class BsWebConfigToLabelTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -177,7 +177,7 @@ public class BsWebConfigToLabelTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -185,7 +185,7 @@ public class BsWebConfigToLabelTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -193,14 +193,14 @@ public class BsWebConfigToLabelTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -159,7 +159,7 @@ public class BsWebConfigToRoleTypeMappingCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -168,7 +168,7 @@ public class BsWebConfigToRoleTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -177,7 +177,7 @@ public class BsWebConfigToRoleTypeMappingCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -185,7 +185,7 @@ public class BsWebConfigToRoleTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -193,14 +193,14 @@ public class BsWebConfigToRoleTypeMappingCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -157,7 +157,7 @@ public class BsWebCrawlingConfigCB extends AbstractConditionBean {
* cb.query().setBirthdate_DateFromTo(fromDate, toDate);
* cb.query().setBirthdate_IsNull(); <span style="color: #3F7E5E">// is null</span>
* cb.query().setBirthdate_IsNotNull(); <span style="color: #3F7E5E">// is not null</span>
*
*
* <span style="color: #3F7E5E">// ExistsReferrer: (co-related sub-query)</span>
* <span style="color: #3F7E5E">// {where exists (select PURCHASE_ID from PURCHASE where ...)}</span>
* cb.query().existsPurchaseList(new SubQuery&lt;PurchaseCB&gt;() {
@ -166,7 +166,7 @@ public class BsWebCrawlingConfigCB extends AbstractConditionBean {
* }
* });
* cb.query().notExistsPurchaseList...
*
*
* <span style="color: #3F7E5E">// InScopeRelation: (sub-query)</span>
* <span style="color: #3F7E5E">// {where MEMBER_STATUS_CODE in (select MEMBER_STATUS_CODE from MEMBER_STATUS where ...)}</span>
* cb.query().inScopeMemberStatus(new SubQuery&lt;MemberStatusCB&gt;() {
@ -175,7 +175,7 @@ public class BsWebCrawlingConfigCB extends AbstractConditionBean {
* }
* });
* cb.query().notInScopeMemberStatus...
*
*
* <span style="color: #3F7E5E">// (Query)DerivedReferrer: (co-related sub-query)</span>
* cb.query().derivedPurchaseList().max(new SubQuery&lt;PurchaseCB&gt;() {
* public void query(PurchaseCB subCB) {
@ -183,7 +183,7 @@ public class BsWebCrawlingConfigCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// referrer sub-query condition</span>
* }
* }).greaterEqual(value);
*
*
* <span style="color: #3F7E5E">// ScalarCondition: (self-table sub-query)</span>
* cb.query().scalar_Equal().max(new SubQuery&lt;MemberCB&gt;() {
* public void query(MemberCB subCB) {
@ -191,14 +191,14 @@ public class BsWebCrawlingConfigCB extends AbstractConditionBean {
* subCB.query().setXxx... <span style="color: #3F7E5E">// scalar sub-query condition</span>
* }
* });
*
*
* <span style="color: #3F7E5E">// OrderBy</span>
* 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);
*
*
* <span style="color: #3F7E5E">// Query(Relation)</span>
* 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();
}

View file

@ -115,7 +115,7 @@ public class BsClickLogCQ extends AbstractBsClickLogCQ {
return getId();
}
/**
/**
* Add order-by as ascend. <br />
* 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. <br />
* 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. <br />
* URL: {IX, NotNull, VARCHAR(4000)}
* @return this. (NotNull)
@ -253,7 +253,7 @@ public class BsClickLogCQ extends AbstractBsClickLogCQ {
return getRequestedTime();
}
/**
/**
* Add order-by as ascend. <br />
* REQUESTED_TIME: {NotNull, TIMESTAMP(23, 10)}
* @return this. (NotNull)

View file

@ -245,7 +245,7 @@ public class BsCrawlingSessionCQ extends AbstractBsCrawlingSessionCQ {
+ key;
}
/**
/**
* Add order-by as ascend. <br />
* 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. <br />
* SESSION_ID: {NotNull, VARCHAR(20)}
* @return this. (NotNull)
@ -313,7 +313,7 @@ public class BsCrawlingSessionCQ extends AbstractBsCrawlingSessionCQ {
return getName();
}
/**
/**
* Add order-by as ascend. <br />
* NAME: {IX, VARCHAR(20)}
* @return this. (NotNull)
@ -347,7 +347,7 @@ public class BsCrawlingSessionCQ extends AbstractBsCrawlingSessionCQ {
return getExpiredTime();
}
/**
/**
* Add order-by as ascend. <br />
* 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. <br />
* CREATED_TIME: {NotNull, TIMESTAMP(23, 10)}
* @return this. (NotNull)

Some files were not shown because too many files have changed in this diff Show more