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 java.lang.String
domainName()
Returns the project's domain name.boolean
isTemplate()
Returns true when the project is a template.java.lang.String
name()
Returns the project's name.java.lang.String
type()
Returns the project's type.java.lang.String
uId()
Returns the project's Unique ID number.
-
-
-
Method Detail
-
uId
java.lang.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
java.lang.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
java.lang.String name()
Returns the project's name.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
type
java.lang.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
-
-