Methods Summary |
---|
public java.lang.String | getDisplayname()Get the user's full name
return displayName;
|
public java.lang.String | getUserID()Get the user's id.
return userID;
|
public void | setDisplayname(java.lang.String displayName)Set the user's fullname
this.displayName = displayName;
|
public void | setUserid(java.lang.String userID)Set the user's id
this.userID = userID;
|
public void | validate()Validate that this object is configured.
if (null == userID) {
final String message = "Username attribute must be set.";
throw new BuildException(message);
}
if (null == displayName) {
final String message =
"Displayname attribute must be set for userID " + userID;
throw new BuildException(message);
}
|