Interface GlueMessage
- All Known Implementing Classes:
GlueMESMessageImpl
Message Layout에 따라 생성된 Message 및 각 Message Attribute별 정보를
Handling하는 Interface Class
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionreturns the value for the attributeNameReturns all the attributesgetTC()
Message(TC:전문)을 가져온다getTCID()
get Transaction Code IDvoid
특정 attributeName에 대한 값을 set 해준다.void
setStringToDate
(String attributeName, String value) 특정 attributeName에 대한 String값을 Date로 set 해준다.void
setStringToNumber
(String attributeName, String value) 특정 attributeName에 대한 String값을 Number(BigDecimal)로 set 해준다.void
Message(TC:전문)을 저장한다void
set Transaction Code IDMethods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Method Details
-
get
returns the value for the attributeName- Parameters:
attributeName
- attribute name- Returns:
- 해당 attribute의 값(Object Type)
-
setObject
특정 attributeName에 대한 값을 set 해준다.- Parameters:
attributeName
- attribute namevalue
- set 할 값 (Object Type)
-
setStringToNumber
특정 attributeName에 대한 String값을 Number(BigDecimal)로 set 해준다.- Parameters:
attributeName
- attribute namevalue
- set 할 값 (String Type)
-
setStringToDate
특정 attributeName에 대한 String값을 Date로 set 해준다.- Parameters:
attributeName
- attribute namevalue
- set 할 값 (String Type)
-
getTCID
String getTCID()get Transaction Code ID- Returns:
- Transaction Code의 ID
-
setTCID
set Transaction Code ID- Parameters:
tcId
- Transaction Code의 ID
-
getTC
String getTC()Message(TC:전문)을 가져온다- Returns:
- String Object
-
setTC
Message(TC:전문)을 저장한다- Parameters:
tc
-
-
getAttributes
Returns all the attributes- Returns:
- 모든 attribute에 대한 값(Map Type)
-