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

com.ericsson.mts.nas.informationelement.field.AbstractTranslatorField 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 com.fasterxml.jackson.annotation.JsonIgnore;
import com.google.common.collect.HashBiMap;

import java.util.List;
import java.util.Map;


public abstract class AbstractTranslatorField extends AbstractField {
    public Integer length;
    public Map namedValue;
    @JsonIgnore
    public HashBiMap namedValueMap = HashBiMap.create(1);
    public Integer nBitLength = 8;
    public List pdu;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy