1. /*
  2. * @(#)DomainManagerOperations.java 1.10 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package org.omg.CORBA;
  8. /**
  9. * Provides the <tt>DomainManager</tt> with the means to access policies.
  10. * <P>
  11. * The <tt>DomainManager</tt> has associated with it the policy objects for a
  12. * particular domain. The domain manager also records the membership of
  13. * the domain and provides the means to add and remove members. The domain
  14. * manager is itself a member of a domain, possibly the domain it manages.
  15. * The domain manager provides mechanisms for establishing and navigating
  16. * relationships to superior and subordinate domains and
  17. * creating and accessing policies.
  18. */
  19. public interface DomainManagerOperations
  20. {
  21. /** This returns the policy of the specified type for objects in
  22. * this domain. The types of policies available are domain specific.
  23. * See the CORBA specification for a list of standard ORB policies.
  24. *
  25. *@param policy_type Type of policy to request
  26. */
  27. public org.omg.CORBA.Policy get_domain_policy(int policy_type);
  28. }