dbflute / dbflute-core

DBFlute core libraries for Java8
http://dbflute.seasar.org/
23 stars 18 forks source link

DBFlute Engine: option to make AppCDef simple determination method e.g. isXxx() #173

Closed jflute closed 1 year ago

jflute commented 1 year ago

This is user feedback. (thanks)

Improvement image:

if (result.memberStatusCode == XxxCDef.MemberStatus.Formalized) {
}
↓
if (result.memberStatusCode.isFormalized()) {
}

Especially for RemoteApi.

First, I will support it as option and only application classification. (e.g. DB classification has Entity, CB methods)

The possibility of confliction with is[Group]() is allowed.