Interface IBPComponentFactory
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseFactory
,IBaseFactoryEx
- All Known Subinterfaces:
IBPComponentFactory2
public interface IBPComponentFactory extends IBaseFactoryEx
Services for Business Process Test.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isValidMoveList(java.lang.String movedBPComponentIds, java.lang.String bpCompAfterNewLocationId)
Checks if the moving bp components given before bpCompAfterNewLocationId is valid (no bpParam references will be lost).void
moveList(java.lang.Object vBPComponentIds, int startingOrder, int newParentId, java.lang.String newParentType, java.lang.String bpCompAfterNewLocationId)
Moves a list of BP Components under the specified parent in the specified order, validate and fix bpParams references validation after the move.void
overrideOwnerBaselineId(int rhs)
For HP use.void
overrideOwnerVersionId(int rhs)
For HP use.-
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.IBaseFactory
addItem, fetchLevel, fetchLevel, fields, fields, filter, history, item, newList, removeItem
-
Methods inherited from interface step.repository.alm.v16.otaclient.IBaseFactoryEx
mail
-
-
-
-
Method Detail
-
moveList
void moveList(java.lang.Object vBPComponentIds, int startingOrder, int newParentId, java.lang.String newParentType, java.lang.String bpCompAfterNewLocationId)
Moves a list of BP Components under the specified parent in the specified order, validate and fix bpParams references validation after the move. To place the BP Component last, send TDAPI_POS_ORDER.TDPOSITION_LAST as the starting order. bpCompAfterNewLocationI
- Parameters:
vBPComponentIds
- Mandatory java.lang.Object parameter.startingOrder
- Mandatory int parameter.newParentId
- Mandatory int parameter.newParentType
- Mandatory java.lang.String parameter.bpCompAfterNewLocationId
- Mandatory java.lang.String parameter.
-
isValidMoveList
boolean isValidMoveList(java.lang.String movedBPComponentIds, java.lang.String bpCompAfterNewLocationId)
Checks if the moving bp components given before bpCompAfterNewLocationId is valid (no bpParam references will be lost). if moving to the end of the script put '0' in bpCompAfterNewLocationId
- Parameters:
movedBPComponentIds
- Mandatory java.lang.String parameter.bpCompAfterNewLocationId
- Mandatory java.lang.String parameter.- Returns:
- Returns a value of type boolean
-
overrideOwnerVersionId
void overrideOwnerVersionId(int rhs)
For HP use. Used to override the owner's version id for stateless factories.
Setter method for the COM property "OverrideOwnerVersionId"
- Parameters:
rhs
- Mandatory int parameter.
-
overrideOwnerBaselineId
void overrideOwnerBaselineId(int rhs)
For HP use. Used to override the owner's baseline id for stateless factories.
Setter method for the COM property "OverrideOwnerBaselineId"
- Parameters:
rhs
- Mandatory int parameter.
-
-