Package org.hxzon.asn1.mms.choice

Source Code of org.hxzon.asn1.mms.choice.AccessResult

package org.hxzon.asn1.mms.choice;

import org.hxzon.asn1.core.parse.BerInputStream;
import org.hxzon.asn1.core.parse.Tag;
import org.hxzon.asn1.core.type.base.BerNode;
import org.hxzon.asn1.core.type.ext.BerChoice;
import org.hxzon.asn1.mms.common.DataAccessError;

public class AccessResult extends BerChoice {

    public AccessResult() {
        setId("access result");
        setName("access result");
    }

//  AccessResult ::= CHOICE
//  {
//  failure  [0] IMPLICIT DataAccessError,
//  success  Data
//  }
    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.CONTEXT | 0:
            return new DataAccessError().init("failure", "failure", tag, stream);
        default:
            return new Data().init("success", "success", tag, stream, false);
        }
    }
}
TOP

Related Classes of org.hxzon.asn1.mms.choice.AccessResult

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.