Class GlueMessageAttributeDefinition
java.lang.Object
com.poscoict.glueframework.message.GlueMessageAttributeDefinition
각 Message별 Message Layout정보의 항목별 정보를 Handling하는 Class. 해당 Attribute의 속성들을 가진다.
-
Constructor Summary
ConstructorsConstructorDescription생성자(constructor).GlueMessageAttributeDefinition
(String type, int seq, String id, String name, String datatype, int length, int precision) 생성자(constructor). -
Method Summary
Modifier and TypeMethodDescriptionAttribute의 datatype속성을 가져온다getId()
Attribute의 Id속성을 가져온다int
Attribute의 length속성을 가져온다getName()
Attribute의 name속성을 가져온다int
Attribute의 precision속성을 가져온다int
getSeq()
Attribute의 Seq속성을 가져온다getType()
Attribute의 type속성을 가져온다void
setDatatype
(String datatype) Attribute의 datatype속성을 저장한다.void
Attribute의 Id속성을 저장한다.void
setLength
(int length) Attribute의 length속성을 저장한다.void
Attribute의 name속성을 저장한다.void
setPrecision
(int precision) Attribute의 precision속성을 저장한다.void
setSeq
(int seq) Attribute의seq속성을 저장한다.void
Attribute의 type속성을 저장한다.
-
Constructor Details
-
GlueMessageAttributeDefinition
public GlueMessageAttributeDefinition()생성자(constructor). -
GlueMessageAttributeDefinition
public GlueMessageAttributeDefinition(String type, int seq, String id, String name, String datatype, int length, int precision) 생성자(constructor). 해당 Attribute의 속성을 생성한다.- Parameters:
type
-seq
-id
-name
-datatype
-length
-precision
-
-
-
Method Details
-
getType
Attribute의 type속성을 가져온다- Returns:
- String Attribute의 type
-
setType
Attribute의 type속성을 저장한다.- Parameters:
type
- Attribute의 type
-
getSeq
public int getSeq()Attribute의 Seq속성을 가져온다- Returns:
- int Attribute의 seq
-
setSeq
public void setSeq(int seq) Attribute의seq속성을 저장한다.- Parameters:
seq
- Attribute의 seq
-
getId
Attribute의 Id속성을 가져온다- Returns:
- String Attribute의 Id
-
setId
Attribute의 Id속성을 저장한다.- Parameters:
id
- Attribute의 Id
-
getName
Attribute의 name속성을 가져온다- Returns:
- String Attribute의 name
-
setName
Attribute의 name속성을 저장한다.- Parameters:
name
- Attribute의 name
-
getDatatype
Attribute의 datatype속성을 가져온다- Returns:
- String Attribute의 datatype
-
setDatatype
Attribute의 datatype속성을 저장한다.- Parameters:
datatype
- Attribute의 datatype
-
getLength
public int getLength()Attribute의 length속성을 가져온다- Returns:
- int Attribute의 length
-
setLength
public void setLength(int length) Attribute의 length속성을 저장한다.- Parameters:
length
- Attribute의 length
-
getPrecision
public int getPrecision()Attribute의 precision속성을 가져온다- Returns:
- int Attribute의 precision
-
setPrecision
public void setPrecision(int precision) Attribute의 precision속성을 저장한다.- Parameters:
precision
- Attribute의 precision
-