All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ericsson.mts.nas.informationelement.field.FieldMapContainer Maven / Gradle / Ivy

Go to download

A library to encode and decode NAS protocol data, from and to other formats, like XML

There is a newer version: 0.0.15
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy