Package org.hxzon.asn1.mms.choice

Examples of org.hxzon.asn1.mms.choice.ObjectName


        case Tag.CONTEXT | 6:
            return new GetVariableAccessAttributesRequest().init("getVariableAccessAttributes", "getVariableAccessAttributes", tag, stream, true);
        case Tag.CONTEXT | 7:
            return new DefineNamedVariableRequest().init("defineNamedVariable", "defineNamedVariable", tag, stream);
        case Tag.CONTEXT | 8:
            return new DefineScatteredAccessRequest().init("defineScatteredAccess", "defineScatteredAccess", tag, stream);
        case Tag.CONTEXT | 9:
            //GetScatteredAccessAttributes-Request ::= ObjectName  -- ScatteredAccessName
            return new ObjectName().init("getScatteredAccessAttributes", "getScatteredAccessAttributes", tag, stream, true);
        case Tag.CONTEXT | 10:
            return new DeleteVariableAccessRequest().init("deleteVariableAccess", "deleteVariableAccess", tag, stream);
View Full Code Here


        case Tag.CONTEXT | 19:
            return new TakeControlRequest().init("takeControl", "takeControl", tag, stream);
        case Tag.CONTEXT | 20:
            return new RelinquishControlRequest().init("relinquishControl", "relinquishControl", tag, stream);
        case Tag.CONTEXT | 21:
            return new DefineSemaphoreRequest().init("defineSemaphore", "defineSemaphore", tag, stream);
        case Tag.CONTEXT | 22:
            //DeleteSemaphore-Request ::= ObjectName    -- Semaphore Name
            return new ObjectName().init("deleteSemaphore", "deleteSemaphore", tag, stream);
        case Tag.CONTEXT | 23:
            //ReportSemaphoreStatus-Request ::= ObjectName  -- SemaphoreName
View Full Code Here

            //ReportJournalStatus-Request ::= ObjectName  -- Journal Name
            return new ObjectName().init("reportJournalStatus", "reportJournalStatus", tag, stream);
        case Tag.CONTEXT | 69:
            return new CreateJournalRequest().init("createJournal", "createJournal", tag, stream);
        case Tag.CONTEXT | 70:
            return new DeleteJournalRequest().init("deleteJournal", "deleteJournal", tag, stream);
        case Tag.CONTEXT | 71:
            return new GetCapabilityListRequest().init("getCapabilityList", "getCapabilityList", tag, stream);
        case Tag.CONTEXT | 72:
            return new FileOpenRequest().init("fileOpen", "fileOpen", tag, stream);
        case Tag.CONTEXT | 73:
View Full Code Here

            return new DefineNamedTypeRequest().init("defineNamedType", "defineNamedType", tag, stream);
        case Tag.CONTEXT | 15:
            //GetNamedTypeAttributes-Request ::= ObjectName -- TypeName
            return new ObjectName().init("getNamedTypeAttributes", "getNamedTypeAttributes", tag, stream, true);
        case Tag.CONTEXT | 16:
            return new DeleteNamedTypeRequest().init("deleteNamedType", "deleteNamedType", tag, stream);
        case Tag.CONTEXT | 17:
            return new InputRequest().init("input", "input", tag, stream);
        case Tag.CONTEXT | 18:
            return new OutputRequest().init("output", "output", tag, stream);
        case Tag.CONTEXT | 19:
View Full Code Here

            return new DefineNamedVariableListRequest().init("defineNamedVariableList", "defineNamedVariableList", tag, stream);
        case Tag.CONTEXT | 12:
            //GetNamedVariableListAttributes-Request ::= ObjectName  -- VariableListName
            return new ObjectName().init("getNamedVariableListAttributes", "getNamedVariableListAttributes", tag, stream);
        case Tag.CONTEXT | 13:
            return new DeleteNamedVariableListRequest().init("deleteNamedVariableList", "deleteNamedVariableList", tag, stream);
        case Tag.CONTEXT | 14:
            return new DefineNamedTypeRequest().init("defineNamedType", "defineNamedType", tag, stream);
        case Tag.CONTEXT | 15:
            //GetNamedTypeAttributes-Request ::= ObjectName -- TypeName
            return new ObjectName().init("getNamedTypeAttributes", "getNamedTypeAttributes", tag, stream, true);
View Full Code Here

            return new DefineScatteredAccessRequest().init("defineScatteredAccess", "defineScatteredAccess", tag, stream);
        case Tag.CONTEXT | 9:
            //GetScatteredAccessAttributes-Request ::= ObjectName  -- ScatteredAccessName
            return new ObjectName().init("getScatteredAccessAttributes", "getScatteredAccessAttributes", tag, stream, true);
        case Tag.CONTEXT | 10:
            return new DeleteVariableAccessRequest().init("deleteVariableAccess", "deleteVariableAccess", tag, stream);
        case Tag.CONTEXT | 11:
            return new DefineNamedVariableListRequest().init("defineNamedVariableList", "defineNamedVariableList", tag, stream);
        case Tag.CONTEXT | 12:
            //GetNamedVariableListAttributes-Request ::= ObjectName  -- VariableListName
            return new ObjectName().init("getNamedVariableListAttributes", "getNamedVariableListAttributes", tag, stream);
View Full Code Here

            return new FileRenameRequest().init("fileRename", "fileRename", tag, stream);
        case Tag.CONTEXT | 76:
            //FileDelete-Request ::= FileName
            return new FileName().init("fileDelete", "fileDelete", tag, stream);
        case Tag.CONTEXT | 77:
            return new FileDirectoryRequest().init("fileDirectory", "fileDirectory", tag, stream);
        default:
            return Asn1Utils.createUnknown(tag, stream);
        }
    }
View Full Code Here

        case Tag.CONTEXT | 70:
            return new DeleteJournalRequest().init("deleteJournal", "deleteJournal", tag, stream);
        case Tag.CONTEXT | 71:
            return new GetCapabilityListRequest().init("getCapabilityList", "getCapabilityList", tag, stream);
        case Tag.CONTEXT | 72:
            return new FileOpenRequest().init("fileOpen", "fileOpen", tag, stream);
        case Tag.CONTEXT | 73:
            //FileRead-Request ::= Integer32
            return Asn1Utils.createBerInteger32("fileRead", "fileRead", tag, stream);
        case Tag.CONTEXT | 74:
            //FileClose-Request ::= Integer32
View Full Code Here

            return Asn1Utils.createBerInteger32("fileRead", "fileRead", tag, stream);
        case Tag.CONTEXT | 74:
            //FileClose-Request ::= Integer32
            return Asn1Utils.createBerInteger32("fileClose", "fileClose", tag, stream);
        case Tag.CONTEXT | 75:
            return new FileRenameRequest().init("fileRename", "fileRename", tag, stream);
        case Tag.CONTEXT | 76:
            //FileDelete-Request ::= FileName
            return new FileName().init("fileDelete", "fileDelete", tag, stream);
        case Tag.CONTEXT | 77:
            return new FileDirectoryRequest().init("fileDirectory", "fileDirectory", tag, stream);
View Full Code Here

        String reverse = BytesUtil.toHexString(data);
        System.out.println(reverse);
        ByteArrayInputStream inStream = new ByteArrayInputStream(data);
        BerInputStream in = new BerInputStream(inStream);

        SvPduParser parser = SvPduParser.parser;
        BerNode node;
        while (null != (node = parser.readPacket(in))) {
            System.out.println(Asn1Utils.printBerNode(node));
        }
    }
View Full Code Here

TOP

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

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.