com.ibm.uddi.v3.management
Class UddiUser
- java.lang.Object
com.ibm.uddi.v3.management.UddiUser
All implemented interfaces:
java.io.Serializable
- public class UddiUser
- extends java.lang.Object
- implements java.io.Serializable
See Also:
Constructor Summary
Constructor and Description |
---|
UddiUser()
Constructor taking no arguments.
|
UddiUser(java.lang.String userId,int tierId,java.util.List entitlements)
Constructor taking user ID, tier ID, and collection of entitlements.
|
UddiUser(java.lang.String userId,java.lang.String userRealm,java.lang.String userUniqueUserId,TierInfo tierInfo,java.util.List entitlements)
Constructor taking user ID, tier, and collection of entitlements.
|
UddiUser(java.lang.String userId,TierInfo tierInfo,java.util.List entitlements)
Constructor taking user ID, tier, and collection of entitlements.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getEntitlements()
Returns the collection of
Entitlement .
|
|
getTierId()
Returns the ID of the tier this user is assigned to.
|
|
getUserId()
Returns the user ID/name.
|
getUserIdAsProperty()
Returns the userId as a
Property .
|
|
|
getUserRealm()
Returns the user realm.
|
|
getUserUniqueUserId()
Returns the user uniqueUserId.
|
|
setEntitlements(java.util.List entitlements)
Sets the collection of
Entitlement .
|
|
setTierId(java.lang.String tierId)
Sets the tier this user belongs to.
|
|
setUniqueUserId(java.lang.String userUniqueUserId)
Sets the user's uniqueUserId.
|
|
setUserId(java.lang.String userId)
Sets the UDDIUser userId.
|
|
setUserRealm(java.lang.String userRealm)
Sets the realm the user belongs to.
|
|
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail
UddiUser
- public UddiUser()
Constructor taking no arguments.
UddiUser
- public UddiUser(java.lang.String userId,
- TierInfo tierInfo,
- java.util.List entitlements)
Constructor taking user ID, tier, and collection of entitlements.
Parameters:
userId
- tierInfo
- UddiUser
- public UddiUser(java.lang.String userId,
- java.lang.String userRealm,
- java.lang.String userUniqueUserId,
- TierInfo tierInfo,
- java.util.List entitlements)
Constructor taking user ID, tier, and collection of entitlements.
Parameters:
userId
- userRealm
- userUniqueUserId
- tierInfo
- UddiUser
- public UddiUser(java.lang.String userId,
- int tierId,
- java.util.List entitlements)
Constructor taking user ID, tier ID, and collection of entitlements.
Parameters:
userId
- tierId
- entitlements
- - collection of Entitlement
objects. Method Detail
getEntitlements
- public java.util.List getEntitlements( )
Returns the collection of
Entitlement
.
Returns:
getTierId
- public java.lang.String getTierId( )
Returns the ID of the tier this user is assigned to.
Returns:
getUserId
- public java.lang.String getUserId( )
Returns the user ID/name.
Returns:
getUserRealm
- public java.lang.String getUserRealm( )
Returns the user realm.
Returns:
getUserUniqueUserId
- public java.lang.String getUserUniqueUserId( )
Returns the user uniqueUserId.
Returns:
setEntitlements
- public void setEntitlements(java.util.List entitlements)
Sets the collection of
Entitlement
.
Parameters:
entitlements
- setTierId
- public void setTierId(java.lang.String tierId)
Sets the tier this user belongs to.
setUserId
- public void setUserId(java.lang.String userId)
Sets the UDDIUser userId.
setUserRealm
- public void setUserRealm(java.lang.String userRealm)
Sets the realm the user belongs to.
setUniqueUserId
- public void setUniqueUserId(java.lang.String userUniqueUserId)
Sets the user's uniqueUserId.
getUserIdAsProperty
- public Property getUserIdAsProperty( )
Returns the userId as a
Property
. This is
typically used by the administrative console.
Returns:
toString
- public java.lang.String toString( )
Overrides:
toString
in class java.lang.Object
See Also:
Object.toString()