Package org.jacorb.orb.miop

Examples of org.jacorb.orb.miop.MIOPProfile


    * @throws NotAGroupObject if ref is not a group reference
    */
   public void disassociate_reference_with_id (org.omg.CORBA.Object ref, byte[] oid) throws NotAGroupObject
   {

      MIOPProfile profile = getMIOPProfile (ref);

      removeGroupMember (profile, oid);
   }
View Full Code Here


    * @throws NotAGroupObject if ref is not a group reference
    */
   public void associate_reference_with_id (org.omg.CORBA.Object ref, byte[] oid) throws NotAGroupObject
   {

      MIOPProfile profile = getMIOPProfile (ref);

      addGroupMember (profile, oid);
   }
View Full Code Here

    * @throws NotAGroupObject if ref is not a group reference
    */
   public byte[] create_id_for_reference (org.omg.CORBA.Object ref) throws NotAGroupObject
   {

      MIOPProfile profile = getMIOPProfile (ref);

      // This method in POA is private, we must change
      byte[] oid = generateObjectId ();

      addGroupMember (profile, oid);
View Full Code Here

TOP

Related Classes of org.jacorb.orb.miop.MIOPProfile

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.