| org.sakaiproject.user.api.UserEdit
UserEdit | public interface UserEdit extends User,Edit(Code) | |
UserEdit is a mutable User object.
|
restrictEditEmail | void restrictEditEmail()(Code) | | Make the user's email address unchangable during this edit
|
restrictEditFirstName | void restrictEditFirstName()(Code) | | Make the user's first name unchangable during this edit
|
restrictEditLastName | void restrictEditLastName()(Code) | | Make the user's last name unchangable during this edit
|
restrictEditPassword | void restrictEditPassword()(Code) | | Make the user's password unchangable during this edit
|
restrictEditType | void restrictEditType()(Code) | | Make the user's type unchangable during this edit
|
setEid | void setEid(String eid)(Code) | | Set the user's enterprise id. Must be unique among all users.
Parameters: eid - The new eid value. |
setEmail | void setEmail(String email)(Code) | | Set the email address.
Parameters: email - The email address string. |
setFirstName | void setFirstName(String name)(Code) | | Set the user's first name.
Parameters: name - The user's first name. |
setId | void setId(String id)(Code) | | Set the user's id. Note: this is a special purpose routine that is used only to establish the id field, when the id is null, and cannot be used to change a user's id, which is defined to be an un-changing value.
Parameters: name - The user id. |
setLastName | void setLastName(String name)(Code) | | Set the user's last name.
Parameters: name - The user's last name. |
setPassword | void setPassword(String pw)(Code) | | Set the user's password
Parameters: pw - The user's new password. |
setType | void setType(String type)(Code) | | Set the user type.
Parameters: type - The user type. |
|
|