Package org.hxzon.asn1.mms.sequence

Source Code of org.hxzon.asn1.mms.sequence.GetVariableAccessAttributesResponse

package org.hxzon.asn1.mms.sequence;

import org.hxzon.asn1.core.parse.BerInputStream;
import org.hxzon.asn1.core.parse.Tag;
import org.hxzon.asn1.core.parse.ext.Asn1Utils;
import org.hxzon.asn1.core.type.BerSequence;
import org.hxzon.asn1.core.type.base.BerNode;
import org.hxzon.asn1.mms.choice.Address;
import org.hxzon.asn1.mms.choice.TypeSpecification;

public class GetVariableAccessAttributesResponse extends BerSequence {
//  GetVariableAccessAttributes-Response ::= SEQUENCE
//  {
//  mmsDeletable    [0] IMPLICIT BOOLEAN,
//  address      [1] Address OPTIONAL,
//  typeSpecification  [2] TypeSpecification
//  }
    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.CONTEXT | 0:
            return Asn1Utils.createBerBoolean("mmsDeletable", "mmsDeletable", tag, stream);
        case Tag.CONTEXT | 1:
            return new Address().init("address", "address", tag, stream, true);
        case Tag.CONTEXT | 2:
            return new TypeSpecification().init("typeSpecification", "typeSpecification", tag, stream, true);
        default:
            return Asn1Utils.createUnknown(tag, stream);
        }
    }

}
TOP

Related Classes of org.hxzon.asn1.mms.sequence.GetVariableAccessAttributesResponse

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.