Package step.repository.alm.otaclient
Interface IProjectDescriptor
-
- All Superinterfaces:
com4j.Com4jObject
public interface IProjectDescriptor extends com4j.Com4jObject
Information about a project.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
domainName()
Returns the project's domain name.boolean
isTemplate()
Returns true when the project is a template.String
name()
Returns the project's name.String
type()
Returns the project's type.String
uId()
Returns the project's Unique ID number.
-
-
-
Method Detail
-
uId
String uId()
Returns the project's Unique ID number.
Getter method for the COM property "UId"
- Returns:
- Returns a value of type java.lang.String
-
domainName
String domainName()
Returns the project's domain name.
Getter method for the COM property "DomainName"
- Returns:
- Returns a value of type java.lang.String
-
name
String name()
Returns the project's name.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
type
String type()
Returns the project's type.
Getter method for the COM property "Type"
- Returns:
- Returns a value of type java.lang.String
-
isTemplate
boolean isTemplate()
Returns true when the project is a template.
Getter method for the COM property "IsTemplate"
- Returns:
- Returns a value of type boolean
-
-