Class GlueMESMessageImpl

java.lang.Object
java.util.AbstractMap<String,Object>
java.util.HashMap<String,Object>
com.poscoict.glueframework.message.GlueMESMessageImpl
All Implemented Interfaces:
GlueMessage, Serializable, Cloneable, Map<String,Object>

public class GlueMESMessageImpl extends HashMap<String,Object> implements GlueMessage
Message Layout에 따라 생성된 Message 및 각 Message Attribute별 정보를 Handling하는 Implement Class
See Also:
  • Field Details

    • tcId

      protected String tcId
      TC(전문) ID
    • tc

      protected String tc
      송수신되는 Message(TC:전문) Data
    • ifd

      protected String ifd
      Message 송수신을 위한 Interface ID
  • Constructor Details

    • GlueMESMessageImpl

      public GlueMESMessageImpl()
  • Method Details

    • get

      public Object get(String attributeName)
      Description copied from interface: GlueMessage
      returns the value for the attributeName
      Specified by:
      get in interface GlueMessage
      Parameters:
      attributeName - attribute name
      Returns:
      해당 attribute의 값(Object Type)
    • setObject

      public void setObject(String attributeName, Object value)
      Description copied from interface: GlueMessage
      특정 attributeName에 대한 값을 set 해준다.
      Specified by:
      setObject in interface GlueMessage
      Parameters:
      attributeName - attribute name
      value - set 할 값 (Object Type)
    • setStringToNumber

      public void setStringToNumber(String attributeName, String value)
      Description copied from interface: GlueMessage
      특정 attributeName에 대한 String값을 Number(BigDecimal)로 set 해준다.
      Specified by:
      setStringToNumber in interface GlueMessage
      Parameters:
      attributeName - attribute name
      value - set 할 값 (String Type)
    • setStringToDate

      public void setStringToDate(String attributeName, String value)
      Description copied from interface: GlueMessage
      특정 attributeName에 대한 String값을 Date로 set 해준다.
      Specified by:
      setStringToDate in interface GlueMessage
      Parameters:
      attributeName - attribute name
      value - set 할 값 (String Type)
    • getTCID

      public String getTCID()
      Description copied from interface: GlueMessage
      get Transaction Code ID
      Specified by:
      getTCID in interface GlueMessage
      Returns:
      Transaction Code의 ID
    • setTCID

      public void setTCID(String tcId)
      Description copied from interface: GlueMessage
      set Transaction Code ID
      Specified by:
      setTCID in interface GlueMessage
      Parameters:
      tcId - Transaction Code의 ID
    • getTC

      public String getTC()
      Description copied from interface: GlueMessage
      Message(TC:전문)을 가져온다
      Specified by:
      getTC in interface GlueMessage
      Returns:
      String Object
    • setTC

      public void setTC(String tc)
      Description copied from interface: GlueMessage
      Message(TC:전문)을 저장한다
      Specified by:
      setTC in interface GlueMessage
      Parameters:
      tc -
    • getAttributes

      public Map<String,Object> getAttributes()
      Description copied from interface: GlueMessage
      Returns all the attributes
      Specified by:
      getAttributes in interface GlueMessage
      Returns:
      모든 attribute에 대한 값(Map Type)
    • getString

      public String getString(String attributeName)
      attributeName에 대한 값을 String으로 반환한다.
      Parameters:
      attributeName - attribute name
      Returns:
      해당 attribute의 값(String Type)
    • setString

      public void setString(String attributeName, String value)
      특정 attributeName에 대한 String값을 저장해준다.
      Parameters:
      attributeName - attribute name
      value - set 할 값 (String Type)
    • getNumber

      public Number getNumber(String attributeName)
      attributeName에 대한 값을 Number으로 반환한다.
      Parameters:
      attributeName - attribute name
      Returns:
      해당 attribute의 값(Number Type)
    • getDate

      public Date getDate(String attributeName)
      attributeName에 대한 값을 Date으로 반환한다.
      Parameters:
      attributeName - attribute name
      Returns:
      해당 attribute의 값(Date Type)
    • logDebug

      public void logDebug(Object key, Object value)