com.businessobjects.enterprise.user
Interface UserAlias


public interface UserAlias

Created automatically when a user is created, or when a member of a third-party group is mapped to the system.

An alias, which is an alternative name that is assigned to a user, allows the user to log on to the Enterprise system using different names and authentication types. A user can have multiple aliases, each of which can be re-assigned to another user with the UserAliases class.


Nested Class Summary
static class UserAlias.Factory
          A class with methods for creating instances of the UserAlias type.
 
Field Summary
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
 
Method Summary
 boolean getDisabled()
          Returns whether the alias is disabled.
 java.lang.String getID()
          Returns the ID for the alias.
 java.lang.String getName()
          Returns the name of the alias.
 void setDisabled(boolean disabled)
          Disables the alias.
 void setID(java.lang.String id)
          Internal Use Only.
 void setName(java.lang.String name)
          Internal Use Only.
 org.apache.xmlbeans.XmlBoolean xgetDisabled()
          Internal Use Only.
 org.apache.xmlbeans.XmlString xgetID()
          Internal Use Only.
 org.apache.xmlbeans.XmlString xgetName()
          Internal Use Only.
 void xsetDisabled(org.apache.xmlbeans.XmlBoolean disabled)
          Internal Use Only.
 void xsetID(org.apache.xmlbeans.XmlString id)
          Internal Use Only.
 void xsetName(org.apache.xmlbeans.XmlString name)
          Internal Use Only.
 

Field Detail

type

static final org.apache.xmlbeans.SchemaType type
Internal Use Only.

Method Detail

getName

java.lang.String getName()

Returns the name of the alias.

Returns:
A String containing the name of the alias.

xgetName

org.apache.xmlbeans.XmlString xgetName()
Internal Use Only.


setName

void setName(java.lang.String name)
Internal Use Only.


xsetName

void xsetName(org.apache.xmlbeans.XmlString name)
Internal Use Only.


getDisabled

boolean getDisabled()

Returns whether the alias is disabled.

Returns:
true if the alias is disabled, false otherwise.

xgetDisabled

org.apache.xmlbeans.XmlBoolean xgetDisabled()
Internal Use Only.


setDisabled

void setDisabled(boolean disabled)

Disables the alias.

Parameters:
disabled - true if the alias is disabled, false otherwise.

xsetDisabled

void xsetDisabled(org.apache.xmlbeans.XmlBoolean disabled)
Internal Use Only.


getID

java.lang.String getID()

Returns the ID for the alias.

Returns:
The ID.

xgetID

org.apache.xmlbeans.XmlString xgetID()
Internal Use Only.


setID

void setID(java.lang.String id)
Internal Use Only.


xsetID

void xsetID(org.apache.xmlbeans.XmlString id)
Internal Use Only.