com.ericsson.mts.nas.informationelement.field.FieldMapContainer 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.informationelement.field;
import java.util.List;
public class FieldMapContainer {
private List keys;
private List pdu;
public List getKeys() {
return keys;
}
public void setKeys(List keys) {
this.keys = keys;
}
public List getPdu() {
return pdu;
}
public void setPdu(List pdu) {
this.pdu = pdu;
}
}