com.polarion.alm.tracker.IBaselinesManager
METHODS
Modifiers and Type | Name | Description |
---|---|---|
IPObjectList<IBaseline> | getBaselines() | Returns a list of project baselines defined in the given project. (Sorted by the base revision in descending order.) |
IBaseline | getRevisionBaseline(String) | |
IBaseline | createBaseline(String,String,String,IUser) | Creates a project baseline. The baseline is not saved. Users must call {@link IBaseline#save()} manually. |
IBaseline | createObjectBaseline(IPObject) | Creates an object baseline for a versioned base object; the revision of the base object ( {@code baseObject.getRevision()} ) will be used as the base revision. Currently, only {@link IModule} and {@link IBaselineCollection} are allowed as the base object. The baseline is not saved. Users must call {@link IBaseline#save()} manually. |
IBaseline | createObjectBaselineForChange(IPObject) | Creates an object baseline for the current change of the base object. (For the change that will be committed in the same transaction as the baseline.) This is useful when the baseline is created automatically as part of one of the base object's workflow transitions. The base object must have already been committed, (have the data revision filled in), so it is not possible to create the base object and its baseline in a single transaction. The base object may be saved as part of the call. The base revision of the baseline will only be available once the transaction is complete. Currently, only {@link IModule} is allowed as the base object. The baseline is not saved. Users must call {@link IBaseline#save()} manually. |
void | deleteBaseline(IBaseline) | |
String | getCurrentJobStatus() | |
boolean | isJobRunning() | Determines if there is a comparison job active for this project. |
IComparisonReport[] | listExistingReports() | Returns existing comparison reports. |
IComparisonReport | getExistingReport(String) | |
void | deleteExistingReport(String) | Delete the existing report from the reports repository. No error is produced if no such report exists. |
boolean | isHistoryAvailable() |
Back to Index