Interface IBusinessProcess
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IBaseFieldEx
,IBaseFieldExMail
,IObjectLockingSupport
,ITest
- All Known Subinterfaces:
IBusinessProcess2
,IBusinessProcess3
,IBusinessProcess4
,IBusinessProcess5
,IBusinessProcess6
public interface IBusinessProcess extends ITest
Represents a single Business Process Test.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com4j.Com4jObject
addBPComponent(com4j.Com4jObject pComponent)
Deprecated.com4j.Com4jObject
addGroup()
Deprecated.com4j.Com4jObject
addRTParam()
Deprecated.com4j.Com4jObject
bpComponentByID(int nCompID)
Deprecated.IList
bpComponents()
Deprecated.java.lang.Object
bpComponents(int index)
com4j.Com4jObject
bptHistory()
The test's history object.void
cancelDownloadPictures()
Cancels the download of the test component's pictures.void
deleteBPComponent(com4j.Com4jObject pBPComponent)
Deprecated.void
deleteGroup(com4j.Com4jObject pBPGroup)
Deprecated.void
deleteRTParam(com4j.Com4jObject pRTParam)
Deprecated.void
downloadPictures()
Download the snapshots attached to the components of the test to the clients cache.void
downloadPicturesProgress(com4j.Holder<java.lang.Integer> total, com4j.Holder<java.lang.Integer> current)
Reports the status of DownloadPictures.com4j.Com4jObject
groupByID(int nGroupID)
Deprecated.java.lang.String
htmlScript()
Not implemented.void
load()
Deprecated.IList
rtParameters()
Deprecated.java.lang.Object
rtParameters(int index)
void
save()
Deprecated.-
Methods inherited from interface com4j.Com4jObject
advise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
-
Methods inherited from interface step.repository.alm.v16.otaclient.IBaseField
autoPost, autoPost, field, field, id, modified, post, refresh, undo, virtual
-
Methods inherited from interface step.repository.alm.v16.otaclient.IBaseFieldEx
attachments, hasAttachment, history
-
Methods inherited from interface step.repository.alm.v16.otaclient.IBaseFieldExMail
mail
-
Methods inherited from interface step.repository.alm.v16.otaclient.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
Methods inherited from interface step.repository.alm.v16.otaclient.ITest
checkoutPathIfExist, coverRequirement, designStepFactory, desStepsNum, execDate, execStatus, extendedStorage, fullPath, fullPathEx, getCoverList, getCoverList, hasCoverage, hasParam, ignoreDataHiding, ignoreDataHiding, lastRun, name, name, params, removeCoverage, templateTest, templateTest, type, type, vcs
-
-
-
-
Method Detail
-
load
void load()
Deprecated. Use factories to load BusinessProcess object and all of its dependencies. Loads the BusinessProcess object and all of its dependencies into memory.
-
save
void save()
Deprecated. Use factories to save the BusinessProcess object and all of its dependencies. Saves the BusinessProcess object and all of its dependencies.
-
rtParameters
IList rtParameters()
Deprecated. Use TestParameterFactory of ISupportTestParameters. The list of run time parameters for the test.
Getter method for the COM property "RTParameters"
- Returns:
- Returns a value of type step.repository.alm.v16.otaclient.IList
-
rtParameters
java.lang.Object rtParameters(int index)
-
addRTParam
com4j.Com4jObject addRTParam()
Deprecated. Use TestParameterFactory of ISupportTestParameters. Adds a runtime parameter to the test.
- Returns:
- Returns a value of type com4j.Com4jObject
-
deleteRTParam
void deleteRTParam(com4j.Com4jObject pRTParam)
Deprecated. Use TestParameterFactory of ISupportTestParameters. Delete the given RTParam from the test.
- Parameters:
pRTParam
- Mandatory com4j.Com4jObject parameter.
-
bpComponents
IList bpComponents()
Deprecated. Use BPComponentFactory of IBusinessProcess4. The list of BPComponents that belong to the test.
Getter method for the COM property "BPComponents"
- Returns:
- Returns a value of type step.repository.alm.v16.otaclient.IList
-
bpComponents
java.lang.Object bpComponents(int index)
-
addBPComponent
com4j.Com4jObject addBPComponent(com4j.Com4jObject pComponent)
Deprecated. Use BPComponentFactory of IBusinessProcess4. Adds the specified Component to the test.
- Parameters:
pComponent
- Mandatory com4j.Com4jObject parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
deleteBPComponent
void deleteBPComponent(com4j.Com4jObject pBPComponent)
Deprecated. Use BPComponentFactory of IBusinessProcess4. Delete the specified BPComponent from the test.
- Parameters:
pBPComponent
- Mandatory com4j.Com4jObject parameter.
-
addGroup
com4j.Com4jObject addGroup()
Deprecated. Use BPComponentFactory of IBusinessProcess4 (Group is BPComponent). Adds an empty group of components to the test.
- Returns:
- Returns a value of type com4j.Com4jObject
-
deleteGroup
void deleteGroup(com4j.Com4jObject pBPGroup)
Deprecated. Use BPComponentFactory of IBusinessProcess4 (Group is BPComponent). Delete the specified BPGroup from the test.
- Parameters:
pBPGroup
- Mandatory com4j.Com4jObject parameter.
-
groupByID
com4j.Com4jObject groupByID(int nGroupID)
Deprecated. Use BPComponentFactory of IBusinessProcess4 (Group is BPComponent). Gets a BPGroup from the test by its ID.
Getter method for the COM property "GroupByID"
- Parameters:
nGroupID
- Mandatory int parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
downloadPictures
void downloadPictures()
Download the snapshots attached to the components of the test to the clients cache.
-
downloadPicturesProgress
void downloadPicturesProgress(com4j.Holder<java.lang.Integer> total, com4j.Holder<java.lang.Integer> current)
Reports the status of DownloadPictures.
- Parameters:
total
- Mandatory Holderparameter. current
- Mandatory Holderparameter.
-
cancelDownloadPictures
void cancelDownloadPictures()
Cancels the download of the test component's pictures.
-
htmlScript
java.lang.String htmlScript()
Not implemented.
Getter method for the COM property "HtmlScript"
- Returns:
- Returns a value of type java.lang.String
-
bptHistory
com4j.Com4jObject bptHistory()
The test's history object.
Getter method for the COM property "BPTHistory"
- Returns:
- Returns a value of type com4j.Com4jObject
-
bpComponentByID
com4j.Com4jObject bpComponentByID(int nCompID)
Deprecated. Use BPComponentFactory of IBusinessProcess4. Gets a BPComponent from the test by its ID.
Getter method for the COM property "BPComponentByID"
- Parameters:
nCompID
- Mandatory int parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
-