|
Préférences
Moteurs de recherche
|
|||||||||||||||||||
JavaTM 2 Platform Std. Ed. v1.5.0
javax.management.relation
|
Constructor Summary | |
---|---|
protected |
RelationTypeSupport(String theRelTypeName)
Constructor to be used for subclasses. |
|
RelationTypeSupport(String theRelTypeName,
RoleInfo[] theRoleInfoArray)
Constructor where all role definitions are dynamically created and passed as parameter. |
Method Summary | |
---|---|
protected void |
addRoleInfo(RoleInfo theRoleInfo)
Add a role info. |
String |
getRelationTypeName()
Returns the relation type name. |
RoleInfo |
getRoleInfo(String theRoleInfoName)
Returns the role info (RoleInfo object) for the given role info name (null if not found). |
List |
getRoleInfos()
Returns the list of role definitions (ArrayList of RoleInfo objects). |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public RelationTypeSupport(String theRelTypeName, RoleInfo[] theRoleInfoArray) throws IllegalArgumentException, InvalidRelationTypeException
theRelTypeName
- Name of relation typetheRoleInfoArray
- List of role definitions (RoleInfo objects)
IllegalArgumentException
- if null parameter
InvalidRelationTypeException
- if:
- the same name has been used for two different roles
- no role info provided
- one null role info provided
protected RelationTypeSupport(String theRelTypeName)
theRelTypeName
- Name of relation type.
IllegalArgumentException
- if null parameter.Method Detail |
---|
public String getRelationTypeName()
getRelationTypeName
in interface RelationType
public List getRoleInfos()
getRoleInfos
in interface RelationType
public RoleInfo getRoleInfo(String theRoleInfoName) throws IllegalArgumentException, RoleInfoNotFoundException
getRoleInfo
in interface RelationType
theRoleInfoName
- role info name
IllegalArgumentException
- if null parameter
RoleInfoNotFoundException
- if no role info with that name in
relation type.protected void addRoleInfo(RoleInfo theRoleInfo) throws IllegalArgumentException, InvalidRelationTypeException
theRoleInfo
- role info to be added.
IllegalArgumentException
- if null parameter.
InvalidRelationTypeException
- if there is already a role
info in current relation type with the same name.