Package step.repository.alm.otaclient
Interface IProjectUser
-
- All Superinterfaces:
com4j.Com4jObject
public interface IProjectUser extends com4j.Com4jObject
Represents a project user.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
description()
The user's description.String
email()
The user's Email address.String
fullName()
The user's full name.int
id()
The user's ID number.boolean
isAdmin()
Checkes whether this user is a project administrator.String
userName()
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
-
-