Package step.repository.alm.otaclient
Interface IProjectUser
-
- All Superinterfaces:
com4j.Com4jObject
public interface IProjectUser extends com4j.Com4jObjectRepresents a project user.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringdescription()The user's description.Stringemail()The user's Email address.StringfullName()The user's full name.intid()The user's ID number.booleanisAdmin()Checkes whether this user is a project administrator.StringuserName()The user's login name.
-
-
-
Method Detail
-
id
int id()
The user's ID number.
Getter method for the COM property "ID"
- Returns:
- Returns a value of type int
-
userName
String userName()
The user's login name.
Getter method for the COM property "UserName"
- Returns:
- Returns a value of type java.lang.String
-
fullName
String fullName()
The user's full name.
Getter method for the COM property "FullName"
- Returns:
- Returns a value of type java.lang.String
-
description
String description()
The user's description.
Getter method for the COM property "Description"
- Returns:
- Returns a value of type java.lang.String
-
email
String email()
The user's Email address.
Getter method for the COM property "Email"
- Returns:
- Returns a value of type java.lang.String
-
isAdmin
boolean isAdmin()
Checkes whether this user is a project administrator.
Getter method for the COM property "IsAdmin"
- Returns:
- Returns a value of type boolean
-
-