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 8 package org.omg.CORBA; 9 10 /** 11 * Provides the <tt>DomainManager</tt> with the means to access policies. 12 * <P> 13 * The <tt>DomainManager</tt> has associated with it the policy objects for a 14 * particular domain. The domain manager also records the membership of 15 * the domain and provides the means to add and remove members. The domain 16 * manager is itself a member of a domain, possibly the domain it manages. 17 * The domain manager provides mechanisms for establishing and navigating 18 * relationships to superior and subordinate domains and 19 * creating and accessing policies. 20 */ 21 22 public interface DomainManagerOperations 23 { 24 /** This returns the policy of the specified type for objects in 25 * this domain. The types of policies available are domain specific. 26 * See the CORBA specification for a list of standard ORB policies. 27 * 28 *@param policy_type Type of policy to request 29 */ 30 public org.omg.CORBA.Policy get_domain_policy(int policy_type); 31 } 32 33