Interface ICustomizationUser
- 
- All Superinterfaces:
- com4j.Com4jObject
 - All Known Subinterfaces:
- ICustomizationUser2
 
 public interface ICustomizationUser extends com4j.Com4jObjectRepresents a user for purposes of adding and removing the user to and from user groups.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringaddress()A text field that can be used to record user information as appropriate for the project.voidaddress(java.lang.String pVal)A text field that can be used to record user information as appropriate for the project.voidaddToGroup(java.lang.Object group)Adds this user to the specified user group.booleandeleted()If true, this user is marked for deletion, but the deletion is not yet committed.voiddeleted(boolean pVal)If true, this user is marked for deletion, but the deletion is not yet committed.java.lang.StringdomainAuthentication()The user credentials for LDAP authentication.voiddomainAuthentication(java.lang.String pVal)The user credentials for LDAP authentication.java.lang.Stringemail()The user's e-mail address.voidemail(java.lang.String pVal)The user's e-mail address.java.lang.StringfullName()The user's full name.voidfullName(java.lang.String pVal)The user's full name.IListgroupsList()The names of all the user groups to which this user belongs.java.lang.ObjectgroupsList(int index)booleanin_Group(java.lang.Object groupName)Deprecated.voidin_Group(java.lang.Object groupName, boolean pVal)Deprecated.booleaninGroup(java.lang.Object groupName)Indicates if this user is a member of the specified group.voidinGroup(java.lang.Object groupName, boolean pVal)Indicates if this user is a member of the specified group.java.lang.Stringname()A unique name by which to identify this user.voidpassword(java.lang.String rhs)Sets the user's password.java.lang.Stringphone()The user's telephone number.voidphone(java.lang.String pVal)The user's telephone number.voidremoveFromGroup(java.lang.Object group)Removes this user from the specified user group.booleanupdated()Indicates if the user's data was updated since the last synchronization with the server.voidupdated(boolean pVal)Indicates if the user's data was updated since the last synchronization with the server.
 
- 
- 
- 
Method Detail- 
addressjava.lang.String address() A text field that can be used to record user information as appropriate for the project. Getter method for the COM property "Address" - Returns:
- Returns a value of type java.lang.String
 
 - 
addressvoid address(java.lang.String pVal) A text field that can be used to record user information as appropriate for the project. Setter method for the COM property "Address" - Parameters:
- pVal- Mandatory java.lang.String parameter.
 
 - 
emailjava.lang.String email() The user's e-mail address. Getter method for the COM property "Email" - Returns:
- Returns a value of type java.lang.String
 
 - 
emailvoid email(java.lang.String pVal) The user's e-mail address. Setter method for the COM property "Email" - Parameters:
- pVal- Mandatory java.lang.String parameter.
 
 - 
fullNamejava.lang.String fullName() The user's full name. Getter method for the COM property "FullName" - Returns:
- Returns a value of type java.lang.String
 
 - 
fullNamevoid fullName(java.lang.String pVal) The user's full name. Setter method for the COM property "FullName" - Parameters:
- pVal- Mandatory java.lang.String parameter.
 
 - 
phonejava.lang.String phone() The user's telephone number. Getter method for the COM property "Phone" - Returns:
- Returns a value of type java.lang.String
 
 - 
phonevoid phone(java.lang.String pVal) The user's telephone number. Setter method for the COM property "Phone" - Parameters:
- pVal- Mandatory java.lang.String parameter.
 
 - 
namejava.lang.String name() A unique name by which to identify this user. Getter method for the COM property "Name" - Returns:
- Returns a value of type java.lang.String
 
 - 
updatedboolean updated() Indicates if the user's data was updated since the last synchronization with the server. Getter method for the COM property "Updated" - Returns:
- Returns a value of type boolean
 
 - 
updatedvoid updated(boolean pVal) Indicates if the user's data was updated since the last synchronization with the server. Setter method for the COM property "Updated" - Parameters:
- pVal- Mandatory boolean parameter.
 
 - 
removeFromGroupvoid removeFromGroup(java.lang.Object group) Removes this user from the specified user group. - Parameters:
- group- Mandatory java.lang.Object parameter.
 
 - 
addToGroupvoid addToGroup(java.lang.Object group) Adds this user to the specified user group. - Parameters:
- group- Mandatory java.lang.Object parameter.
 
 - 
in_Groupboolean in_Group(java.lang.Object groupName) Deprecated. Use InGroup, which uses better error handling. Getter method for the COM property "In_Group" - Parameters:
- groupName- Mandatory java.lang.Object parameter.
- Returns:
- Returns a value of type boolean
 
 - 
in_Groupvoid in_Group(java.lang.Object groupName, boolean pVal)Deprecated. Use InGroup, which uses better error handling. Setter method for the COM property "In_Group" - Parameters:
- groupName- Mandatory java.lang.Object parameter.
- pVal- Mandatory boolean parameter.
 
 - 
deletedboolean deleted() If true, this user is marked for deletion, but the deletion is not yet committed. Getter method for the COM property "Deleted" - Returns:
- Returns a value of type boolean
 
 - 
deletedvoid deleted(boolean pVal) If true, this user is marked for deletion, but the deletion is not yet committed. Setter method for the COM property "Deleted" - Parameters:
- pVal- Mandatory boolean parameter.
 
 - 
groupsListIList groupsList() The names of all the user groups to which this user belongs. - Returns:
- Returns a value of type step.repository.alm.v16.otaclient.IList
 
 - 
groupsListjava.lang.Object groupsList(int index) 
 - 
passwordvoid password(java.lang.String rhs) Sets the user's password. Setter method for the COM property "Password" - Parameters:
- rhs- Mandatory java.lang.String parameter.
 
 - 
inGroupboolean inGroup(java.lang.Object groupName) Indicates if this user is a member of the specified group. Getter method for the COM property "InGroup" - Parameters:
- groupName- Mandatory java.lang.Object parameter.
- Returns:
- Returns a value of type boolean
 
 - 
inGroupvoid inGroup(java.lang.Object groupName, boolean pVal)Indicates if this user is a member of the specified group. Setter method for the COM property "InGroup" - Parameters:
- groupName- Mandatory java.lang.Object parameter.
- pVal- Mandatory boolean parameter.
 
 - 
domainAuthenticationjava.lang.String domainAuthentication() The user credentials for LDAP authentication. Getter method for the COM property "DomainAuthentication" - Returns:
- Returns a value of type java.lang.String
 
 - 
domainAuthenticationvoid domainAuthentication(java.lang.String pVal) The user credentials for LDAP authentication. Setter method for the COM property "DomainAuthentication" - Parameters:
- pVal- Mandatory java.lang.String parameter.
 
 
- 
 
-