1 7 8 package javax.management.relation; 9 10 import java.util.ArrayList ; import java.util.List ; 12 13 import java.io.Serializable ; 14 15 21 public interface RelationType extends Serializable { 22 23 27 32 public String getRelationTypeName(); 33 34 39 public List getRoleInfos(); 40 41 54 public RoleInfo getRoleInfo(String theRoleInfoName) 55 throws IllegalArgumentException , 56 RoleInfoNotFoundException ; 57 } 58 | Popular Tags |