Class KPoint
- java.lang.Object
-
- io.vertx.tp.ke.atom.specification.KPoint
-
- All Implemented Interfaces:
Serializable
public class KPoint extends Object implements Serializable
## 「Pojo」Source/Target ### 1. Intro Here defined the field for join point such as `source` and `target`. ### 2. Attribute |Name|Comment| |---|:---| |key|The default value is `key`, primary key field.| |keyJoin|Required, the join key field of the record.| |crud|Optional, When it has value, you can search `identifier`( targetKey ) by CRUD.| |classDao|Optional, When it has value, you can join with the Dao class instead of CRUD seeking.| |classDefine|Optional, When it has value, you can seek target by defined component.| ### 3. Data Format ```json //
```{ "crud": "xxx", "classDao": "xxx", "keyJoin": "fieldx", "key": "key" } //- Author:
- Lang
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description KPoint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<?>getClassDao()Class<?>getClassDefine()StringgetCrud()StringgetKey()StringgetKeyJoin()io.vertx.core.json.JsonObjectgetSynonym()Stringindent()KPointindent(String identifier)JoinModemodeSource()Get source configuration mode here for calculation.JoinModemodeTarget()Get target configuration mode here for calculation.voidsetClassDao(Class<?> classDao)voidsetClassDefine(Class<?> classDefine)voidsetCrud(String crud)voidsetKey(String key)voidsetKeyJoin(String keyJoin)voidsetSynonym(io.vertx.core.json.JsonObject synonym)io.vertx.up.commune.exchange.BiMappingsynonym()StringtoString()
-
-
-
Method Detail
-
getCrud
public String getCrud()
-
setCrud
public void setCrud(String crud)
-
getKey
public String getKey()
-
setKey
public void setKey(String key)
-
getKeyJoin
public String getKeyJoin()
-
setKeyJoin
public void setKeyJoin(String keyJoin)
-
getClassDao
public Class<?> getClassDao()
-
setClassDao
public void setClassDao(Class<?> classDao)
-
getClassDefine
public Class<?> getClassDefine()
-
setClassDefine
public void setClassDefine(Class<?> classDefine)
-
getSynonym
public io.vertx.core.json.JsonObject getSynonym()
-
setSynonym
public void setSynonym(io.vertx.core.json.JsonObject synonym)
-
synonym
public io.vertx.up.commune.exchange.BiMapping synonym()
-
modeTarget
public JoinMode modeTarget()
Get target configuration mode here for calculation.- Returns:
JoinMode
-
modeSource
public JoinMode modeSource()
Get source configuration mode here for calculation.- Returns:
JoinMode
-
indent
public String indent()
-
-