Package org.omg.CSIIOP

Examples of org.omg.CSIIOP.SECIOP_SEC_TRANS


    public TSSSECIOPTransportConfig() {
    }

    public TSSSECIOPTransportConfig(TaggedComponent component, Codec codec) throws Exception {
        Any any = codec.decode_value(component.component_data, TLS_SEC_TRANSHelper.type());
        SECIOP_SEC_TRANS tst = SECIOP_SEC_TRANSHelper.extract(any);

        supports = tst.target_supports;
        requires = tst.target_requires;
        mechOID = Util.decodeOID(tst.mech_oid);
        targetName = new String(tst.target_name);
View Full Code Here


    }

    public TaggedComponent encodeIOR(ORB orb, Codec codec) throws Exception {
        TaggedComponent result = new TaggedComponent();

        SECIOP_SEC_TRANS sst = new SECIOP_SEC_TRANS();

        sst.target_supports = supports;
        sst.target_requires = requires;
        sst.mech_oid = Util.encodeOID(mechOID);
        sst.target_name = targetName.getBytes();
View Full Code Here

TOP

Related Classes of org.omg.CSIIOP.SECIOP_SEC_TRANS

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.