com.ericsson.mts.nas.message.InformationElementsContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mts-nas Show documentation
Show all versions of mts-nas Show documentation
A library to encode and decode NAS protocol data, from and to other formats, like XML
package com.ericsson.mts.nas.message;
public class InformationElementsContainer {
public String name;
public String type;
public Integer length;
public Integer nBitLength = 8;
public void setName(String name) {
this.name = name;
}
public void setType(String type) {
this.type = type;
}
public void setLength(Integer length) {
this.length = length;
}
public String name(){
return name != null ? name : type;
}
}