Class 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 Detail

      • KPoint

        public KPoint()
    • 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()