com.ibm.uddi.v3.management

Class UddiUser

  1. java.lang.Object
  2. extended bycom.ibm.uddi.v3.management.UddiUser
All implemented interfaces:
java.io.Serializable

  1. public class UddiUser
  2. extends java.lang.Object
  3. implements java.io.Serializable
Represents a UDDI publisher. A UDDI publisher comprises a user name (ID), a tier and a collection of entitlements.
See Also:
Serialized Form

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
  1. java.util.List
getEntitlements()
Returns the collection of Entitlement.
  1. java.lang.String
getTierId()
Returns the ID of the tier this user is assigned to.
  1. java.lang.String
getUserId()
Returns the user ID/name.
  1. Property
getUserIdAsProperty()
Returns the userId as a Property.
  1. java.lang.String
getUserRealm()
Returns the user realm.
  1. java.lang.String
getUserUniqueUserId()
Returns the user uniqueUserId.
  1. void
setEntitlements(java.util.List entitlements)
Sets the collection of Entitlement.
  1. void
setTierId(java.lang.String tierId)
Sets the tier this user belongs to.
  1. void
setUniqueUserId(java.lang.String userUniqueUserId)
Sets the user's uniqueUserId.
  1. void
setUserId(java.lang.String userId)
Sets the UDDIUser userId.
  1. void
setUserRealm(java.lang.String userRealm)
Sets the realm the user belongs to.
  1. java.lang.String
toString()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Detail

UddiUser

  1. public UddiUser()
Constructor taking no arguments.

UddiUser

  1. public UddiUser(java.lang.String userId,
  2. TierInfo tierInfo,
  3. java.util.List entitlements)
Constructor taking user ID, tier, and collection of entitlements.
Parameters:
userId -
tierInfo -

UddiUser

  1. public UddiUser(java.lang.String userId,
  2. java.lang.String userRealm,
  3. java.lang.String userUniqueUserId,
  4. TierInfo tierInfo,
  5. java.util.List entitlements)
Constructor taking user ID, tier, and collection of entitlements.
Parameters:
userId -
userRealm -
userUniqueUserId -
tierInfo -

UddiUser

  1. public UddiUser(java.lang.String userId,
  2. int tierId,
  3. 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

  1. public java.util.List getEntitlements( )
Returns the collection of Entitlement.
Returns:

getTierId

  1. public java.lang.String getTierId( )
Returns the ID of the tier this user is assigned to.
Returns:

getUserId

  1. public java.lang.String getUserId( )
Returns the user ID/name.
Returns:

getUserRealm

  1. public java.lang.String getUserRealm( )
Returns the user realm.
Returns:

getUserUniqueUserId

  1. public java.lang.String getUserUniqueUserId( )
Returns the user uniqueUserId.
Returns:

setEntitlements

  1. public void setEntitlements(java.util.List entitlements)
Sets the collection of Entitlement.
Parameters:
entitlements -

setTierId

  1. public void setTierId(java.lang.String tierId)
Sets the tier this user belongs to.

setUserId

  1. public void setUserId(java.lang.String userId)
Sets the UDDIUser userId.

setUserRealm

  1. public void setUserRealm(java.lang.String userRealm)
Sets the realm the user belongs to.

setUniqueUserId

  1. public void setUniqueUserId(java.lang.String userUniqueUserId)
Sets the user's uniqueUserId.

getUserIdAsProperty

  1. public Property getUserIdAsProperty( )
Returns the userId as a Property. This is typically used by the administrative console.
Returns:

toString

  1. public java.lang.String toString( )
Overrides:
toString in class java.lang.Object
See Also:
Object.toString()