1. /*
  2. * @(#)DomainManager.java 1.3 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package org.omg.CORBA;
  8. /** The DomainManager has associated with it the policy objects for a
  9. * particular domain. The domain manager also records the membership of
  10. * the domain and provides the means to add and remove members. The domain
  11. * manager is itself a member of a domain, possibly the domain it manages.
  12. * The domain manager provides mechanisms for establishing and navigating
  13. * relationships to superior and subordinate domains and
  14. * creating and accessing policies.
  15. */
  16. public interface DomainManager extends org.omg.CORBA.Object
  17. {
  18. /** This returns the policy of the specified type for objects in
  19. * this domain.
  20. */
  21. public org.omg.CORBA.Policy get_domain_policy(int policy_type);
  22. }