Package org.omg.IOP

Examples of org.omg.IOP.TaggedProfile


    (TaggedComponentList components)
    {
        CDROutputStream out = new CDROutputStream(this);
        out.beginEncapsulatedArray();
        MultipleComponentProfileHelper.write(out, components.asArray());
        return new TaggedProfile
               (
                   TAG_MULTIPLE_COMPONENTS.value,
                   out.getBufferCopy()
               );
    }
View Full Code Here


    IIOPProfile pb = (IIOPProfile) profiles.get(i);
    IIOPProfile new_pb = (IIOPProfile) pb.copy();

    new_pb.set_object_key(new_object_key.getBytes());

    new_ior.profiles[i] = new TaggedProfile();
    new_ior.profiles[i].tag = 0; // IIOP

    TaggedProfileHolder holder = new TaggedProfileHolder(new_ior.profiles[i]);

    new_pb.marshal(holder, null);
View Full Code Here

    IIOPProfile pb = (IIOPProfile) profiles.get(i);
    IIOPProfile new_pb = (IIOPProfile) pb.copy();
   
    new_pb.set_object_key(new_object_key.getBytes());
   
    new_ior.profiles[i] = new TaggedProfile();
    new_ior.profiles[i].tag = 0; // IIOP

    TaggedProfileHolder holder = new TaggedProfileHolder(new_ior.profiles[i]);

    new_pb.marshal(holder, null);
View Full Code Here

TOP

Related Classes of org.omg.IOP.TaggedProfile

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.