Package org.hxzon.asn1.mms.common

Examples of org.hxzon.asn1.mms.common.EEDuration


    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.UNIVERSAL | Tag.INTEGER:
            return Asn1Utils.createBerUnsigned32("invokeID", "invokeID", tag, stream);
        case Tag.CONTEXT | 79:
            return new CSRequestDetail().init(tag, stream, false);
        default:
            return new ConfirmedServiceResponse().init(tag, stream, false);
        }
    }
View Full Code Here


//      } OPTIONAL
//  }
    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.CONTEXT | 0:
            return new ErrorClass().init("errorClass", "errorClass", tag, stream, true);
        case Tag.CONTEXT | 1:
            return Asn1Utils.createBerIntegerX("additionalCode", "additionalCode", tag, stream);
        case Tag.CONTEXT | 2:
            return Asn1Utils.createBerVisibleString("additionalDescription", "additionalDescription", tag, stream);
        case Tag.CONTEXT | 3:
View Full Code Here

//  newIdentifier    [2] IMPLICIT Identifier
//        }
    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.CONTEXT | 0:
            return new ExtendedObjectClass().init(tag, stream);
        case Tag.CONTEXT | 1:
            return new ObjectName().init("currentName", "currentName", tag, stream);
        case Tag.CONTEXT | 2:
            return new Identifier().init("newIdentifier", "newIdentifier", tag, stream);
        default:
View Full Code Here

//        evaluationInterval    [4] IMPLICIT Unsigned32 OPTIONAL
//  }
    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.CONTEXT | 0:
            return new ObjectName().init("eventConditionName", "eventConditionName", tag, stream);
        case Tag.CONTEXT | 1:
            return Asn1Utils.createBerBoolean("enabled", "enabled", tag, stream);
        case Tag.CONTEXT | 2:
            return new Priority().init("priority", "priority", tag, stream);
        case Tag.CONTEXT | 3:
View Full Code Here

    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.CONTEXT | 0:
            return new ExtendedObjectClass().init(tag, stream);
        case Tag.CONTEXT | 1:
            return new ObjectName().init("currentName", "currentName", tag, stream);
        case Tag.CONTEXT | 2:
            return new Identifier().init("newIdentifier", "newIdentifier", tag, stream);
        default:
            return Asn1Utils.createUnknown(tag, stream);
        }
View Full Code Here

            case Tag.CONTEXT | 7:
                //DeleteNamedType-Error ::= Unsigned32  --  number Deleted
                return Asn1Utils.createBerUnsigned32("deleteNamedType", "deleteNamedType", tag, stream);
            case Tag.CONTEXT | 8:
                //DefineEventEnrollment-Error ::= ObjectName
                return new ObjectName().init("defineEventEnrollment-Error", "defineEventEnrollment-Error", tag, stream);
            case Tag.CONTEXT | 9:
                return new FileRenameError().init("fileRename", "fileRename", tag, stream);
            default:
                return Asn1Utils.createUnknown(tag, stream);
            }
View Full Code Here

//  numbersOfTokens    [1] IMPLICIT Unsigned16
//  }
    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.CONTEXT | 0:
            return new ObjectName().init("semaphoreName", "semaphoreName", tag, stream);
        case Tag.CONTEXT | 1:
            return Asn1Utils.createBerUnsigned16("numbersOfTokens", "numbersOfTokens", tag, stream);
        default:
            return Asn1Utils.createUnknown(tag, stream);
        }
View Full Code Here

    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.CONTEXT | 79:
            return new CSRequestDetail().init(tag, stream, true);
        default:
            return new UnconfirmedService().init(tag, stream, false);
        }
    }
View Full Code Here

//  listOfAccessResult    [1] IMPLICIT SEQUENCE OF AccessResult
//  }
    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.CONTEXT | 0:
            return new VariableAccessSpecification().init("variableAccessSpecificatn", "variableAccessSpecificatn", tag, stream);
        case Tag.CONTEXT | 1:
            return Asn1Utils.createBerSequenceOf("listOfAccessResult", "listOfAccessResult", tag, stream, AccessResult.class, false);
        default:
            return Asn1Utils.createUnknown(tag, stream);
        }
View Full Code Here

    public BerNode create(int tag, BerInputStream stream) {
        switch (tag) {
        case Tag.CONTEXT | 0:
            return Asn1Utils.createBerBoolean("specificationWithResult", "specificationWithResult", tag, stream);
        case Tag.CONTEXT | 1:
            return new VariableAccessSpecification().init("variableAccessSpecificatn", "variableAccessSpecificatn", tag, stream, true);
        default:
            return Asn1Utils.createUnknown(tag, stream);
        }
    }
View Full Code Here

TOP

Related Classes of org.hxzon.asn1.mms.common.EEDuration

Copyright © 2018 www.massapicom. 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.