Package | Description |
---|---|
com.fatwire.services | |
com.fatwire.services.dao |
Modifier and Type | Method and Description |
---|---|
VersionBean |
VersioningService.checkin(AssetId assetId, String comment, boolean keepCheckedOut, MessageCollectors.VersioningMessageCollector collector)
Commits changes to the specified asset and hence creates a new revision for it.
|
VersionBean |
VersioningService.checkout(AssetId assetId, MessageCollectors.VersioningMessageCollector collector)
Checks out an asset for the logged in user and returns the current revision.
|
VersionBean |
VersioningService.getCurrentRevision(AssetId assetId)
Returns metadata for the current revision for the specified asset.
|
VersionBean |
VersioningService.undoCheckout(AssetId assetId, MessageCollectors.VersioningMessageCollector collector)
Reverts the changes made to the specified checked-out asset, and reverts its state back to what it was before being checked out.
|
Modifier and Type | Method and Description |
---|---|
VersionBean |
VersioningDao.checkin(AssetId assetId, String userId, String comment, boolean keepCheckedOut, MessageCollectors.VersioningMessageCollector collector)
Commits changes to the specified asset and hence creates a new revision for it.
|
VersionBean |
VersioningDao.checkout(AssetId assetId, String userId, MessageCollectors.VersioningMessageCollector collector)
Checks out an asset for the logged in user and returns the current revision.
|
VersionBean |
VersioningDao.getCurrentRevision(AssetId assetId)
Returns metadata for the current revision for the specified asset.
|
VersionBean |
VersioningDao.undoCheckout(AssetId assetId, String userId, MessageCollectors.VersioningMessageCollector collector)
Reverts the changes made to the specified checked-out asset, and reverts its state back to what it was before being checked out.
|