Package com.hp.lft.sdk.mobile
Class ApplicationDescription
java.lang.Object
com.hp.lft.sdk.internal.PropertiesDescriptionBase
com.hp.lft.sdk.PropertiesDescription
com.hp.lft.sdk.mobile.ApplicationDescription
- All Implemented Interfaces:
- CloneableObject,- Description,- Cloneable
The description of a mobile Application test object.
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic classThis class can be used to construct an instance of the ApplicationDescription class using the builder pattern.protected static classHelper class for ApplicationDescription.Builder.
- 
Field SummaryFields inherited from class com.hp.lft.sdk.internal.PropertiesDescriptionBaseproperties
- 
Constructor SummaryConstructorsModifierConstructorDescriptionInitializes a new instance of the ApplicationDescription class.protectedInitializes a new instance of the ApplicationDescription class using the Builder pattern.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the application identifier.getName()Returns the name of the mobile application.Returns the application upload number.Returns the application's version.Indicates whether the application is packaged (instrumented) or not.voidsetIdentifier(String identifier) Sets the application identifier.voidSets the name of the mobile application.voidsetPackaged(Boolean isPackaged) Sets isPackaged to true if the application is packaged (instrumented), and to false if not.voidSets the application upload number.voidsetVersion(String version) Sets the application's version.Methods inherited from class com.hp.lft.sdk.PropertiesDescriptioncloneMethods inherited from class com.hp.lft.sdk.internal.PropertiesDescriptionBasecloneTo, getValueAs, getValueAsStringProperty, insertValue
- 
Constructor Details- 
ApplicationDescriptionpublic ApplicationDescription()Initializes a new instance of the ApplicationDescription class.
- 
ApplicationDescriptionInitializes a new instance of the ApplicationDescription class using the Builder pattern.- Parameters:
- init- the Builder pattern.
 
 
- 
- 
Method Details- 
setIdentifierSets the application identifier.- Parameters:
- identifier- the application identifier.
 
- 
getIdentifierReturns the application identifier.- Returns:
- the application identifier.
 
- 
setNameSets the name of the mobile application.- Parameters:
- name- the name of the mobile application.
 
- 
getNameReturns the name of the mobile application.- Returns:
- the name of the mobile application.
 
- 
setVersionSets the application's version.- Parameters:
- version- the application's version.
 
- 
getVersionReturns the application's version.- Returns:
- the application's version.
 
- 
setPackagedSets isPackaged to true if the application is packaged (instrumented), and to false if not.- Parameters:
- isPackaged- true if the application is packaged (instrumented).
 
- 
isPackagedIndicates whether the application is packaged (instrumented) or not.- Returns:
- true if this application is packaged (instrumented).
 
- 
setUploadSets the application upload number. The upload number can be used to identify the application uniquely when the application is uploaded more than once.- Parameters:
- upload- the application upload number.
 
- 
getUploadReturns the application upload number.- Returns:
- the application upload number.
 
 
-