@Deprecated public interface DataModuleService
DataModule
specific operations.Modifier and Type | Method and Description |
---|---|
DataModule |
activateDataModule(String dataModuleID,
boolean updateDependencies)
Deprecated.
Use
PublishService.publishAssets(List) instead |
DataModule |
copyDataModule(String oldDMID,
DataModule newDM)
Deprecated.
|
DataModule |
createDataModule(DataModule dm)
Deprecated.
|
DataModule |
createTestDataModule(String dataModuleID)
Deprecated.
|
boolean |
dataModuleExists(String dataModuleName)
Deprecated.
|
List<DataModule> |
getAllDataModules(Query query)
Deprecated.
|
List<DataModule> |
getAllDataModules(Query query,
String cutPoints)
Deprecated.
|
DataModule |
getDataModule(String dmID)
Deprecated.
|
DataModule |
getDataModule(String dmID,
boolean includeContent)
Deprecated.
|
List<DataModule> |
getDependentDataModules(String moduleID)
Deprecated.
|
List<DataModule> |
getDependentDataModules(String moduleID,
boolean fetchIndirectReferences)
Deprecated.
|
List<DataModule> |
getDependentDataModules(String moduleID,
boolean fetchIndirectReferences,
String cutPoints,
boolean includeContent)
Deprecated.
|
List<Letter> |
getDependentLetters(String moduleID)
Deprecated.
|
List<Letter> |
getDependentLetters(String moduleID,
boolean fetchIndirectReferences)
Deprecated.
|
List<Letter> |
getDependentLetters(String moduleID,
boolean fetchIndirectReferences,
String cutPoints,
boolean includeContent)
Deprecated.
|
List<DataModule> |
getUsedDataModules(String moduleID,
boolean fetchIndirectReferences)
Deprecated.
|
boolean |
isReferenced(String moduleID)
Deprecated.
|
DataModule |
publishDataModule(String dataModuleID)
Deprecated.
Since 6.2. Use
PublishService.publishAssets(List) instead. |
DataModule |
readDataModule(String dmID)
Deprecated.
|
DataModule |
readDataModule(String dmID,
boolean includeContent)
Deprecated.
|
DataModule |
retrieveVersion(String dataModuleId,
Date publishDate)
Deprecated.
|
DataModule |
revertToLastPublished(String dataModuleId)
Deprecated.
Use
AssetService.revertToLastPublished(String) instead. |
DataModule |
updateDataModule(DataModule dm)
Deprecated.
|
boolean |
updateDependencies(DataModule oldModule,
DataModule newModule)
Deprecated.
|
Set<Letter> |
updateDependencies(DataModule oldModule,
DataModule newModule,
List<Letter> letters)
Deprecated.
|
boolean |
updateEffectiveDependencies(DataModule oldModule,
DataModule newModule,
List<String> lettersToBeIgnored)
Deprecated.
|
@Deprecated boolean dataModuleExists(String dataModuleName) throws ICCException
DataModule
exists by the given name.dataModuleName
- Name of the DataModule
.ICCException
@Deprecated DataModule createDataModule(DataModule dm) throws ICCException
DataModule
object.dm
- The DataModule
to be created.DataModule
objectICCException
@Deprecated DataModule createTestDataModule(String dataModuleID) throws ICCException
DataModule
object.dataModuleID
- ID of the DataModule
whose Inactive version is to be created.DataModule
object.ICCException
@Deprecated DataModule activateDataModule(String dataModuleID, boolean updateDependencies) throws ICCException
PublishService.publishAssets(List)
insteadDataModule
identified by the given dataModuleID
.dataModuleID
- ID of the DataModule
.updateDependencies
- Whether to set this new activated version in the dependencies.DataModule
objectICCException
@Deprecated DataModule publishDataModule(String dataModuleID) throws ICCException
PublishService.publishAssets(List)
instead.DataModule
identified by the given dataModuleID
.dataModuleID
- ID of the DataModule
.DataModule
objectICCException
@Deprecated List<DataModule> getAllDataModules(Query query, String cutPoints) throws ICCException
DataModule
s filtered by the given Query
.query
- Query
to select data modules (supports only first level
attributes/properties of an object).cutPoints
- DataModule
objects.ICCException
Statement
,
Query
@Deprecated List<DataModule> getAllDataModules(Query query) throws ICCException
DataModule
s filtered by the given Query
.query
- Query
to select data modules (supports only first level
attributes/properties of an object).DataModule
objects.ICCException
Statement
,
Query
@Deprecated DataModule updateDataModule(DataModule dm) throws ICCException
DataModule
.dm
- DataModule
object to be updated.DataModule
object.ICCException
@Deprecated DataModule getDataModule(String dmID) throws ICCException
DataModule
identified by the given dmID
.
This action is not audited for action type Read.dmID
- ID of the DataModule
to be fetched.DataModule
identified by the given dmID
.ICCException
@Deprecated DataModule getDataModule(String dmID, boolean includeContent) throws ICCException
DataModule
identified by the given dmID
.
This action is not audited for action type Read.dmID
- ID of the DataModule
to be fetched.includeContent
- DataModule
identified by the given dmID
.ICCException
@Deprecated DataModule readDataModule(String dmID) throws ICCException
DataModule
identified by the given dmID
.
This action is audited for action type Read.dmID
- ID of the DataModule
to be fetched.DataModule
identified by the given dmID
.ICCException
@Deprecated DataModule readDataModule(String dmID, boolean includeContent) throws ICCException
DataModule
identified by the given dmID
.
This action is audited for action type Read.dmID
- ID of the DataModule
to be fetched.includeContent
- DataModule
identified by the given dmID
.ICCException
@Deprecated DataModule copyDataModule(String oldDMID, DataModule newDM) throws ICCException
DataModule
identified by the oldDMID
.
newDM
does not have content in it, the content of the original module
is set in it.oldDMID
- ID of the original DataModule
. Used to fetch the original content, if need be.newDM
- copy of the original Data Module (may have properties altered by the user)DataModule
.ICCException
@Deprecated List<Letter> getDependentLetters(String moduleID) throws ICCException
Letter
s (directly) dependent on the DataModule
identified by the given
moduleID
.
getDependentLetters(String, boolean)
moduleID
- ID of the DataModule
whose dependencies are to be fetched.Letter
s which depend on the given DataModule
.ICCException
getDependentLetters(String, boolean)
@Deprecated List<Letter> getDependentLetters(String moduleID, boolean fetchIndirectReferences) throws ICCException
getDependentLetters(String, boolean, String, boolean)
instead.moduleID
- ID of the DataModule
whose dependencies are to be fetched.fetchIndirectReferences
- True, if you wish to fetch the Letters that directly or indirectly use this module.
Letter
s which depend on the given DataModule
.ICCException
@Deprecated List<Letter> getDependentLetters(String moduleID, boolean fetchIndirectReferences, String cutPoints, boolean includeContent) throws ICCException
moduleID
- ID of the DataModule
whose dependencies are to be fetched.fetchIndirectReferences
- True, if you wish to fetch the Letters that directly or indirectly use this module.cutPoints
- Cut Points to be fetched for letters. If null association cut points for dependent letters will be used.
includeContent
- Whether to include binaries or not?Letter
s which depend on the given DataModule
.ICCException
@Deprecated List<DataModule> getDependentDataModules(String moduleID) throws ICCException
DataModule
s (directly) dependent on the DataModule
identified by the given
moduleID
.
getDependentDataModules(String, boolean)
moduleID
- ID of the DataModule
whose dependencies are to be fetched.DataModule
s dependent on the DataModule
.ICCException
getDependentDataModules(String, boolean)
@Deprecated List<DataModule> getDependentDataModules(String moduleID, boolean fetchIndirectReferences) throws ICCException
getDependentDataModules(String, boolean, String, boolean)
instead.DataModule
s dependent on the DataModule
identified by the given
moduleID
.moduleID
- ID of the DataModule
whose dependencies are to be fetched.fetchIndirectReferences
- True, if you wish to fetch the modules that directly or indirectly use this module.
DataModule
s dependent on the DataModule
.ICCException
@Deprecated List<DataModule> getDependentDataModules(String moduleID, boolean fetchIndirectReferences, String cutPoints, boolean includeContent) throws ICCException
DataModule
s dependent on the DataModule
identified by the given
moduleID
.moduleID
- ID of the DataModule
whose dependencies are to be fetched.fetchIndirectReferences
- True, if you wish to fetch the modules that directly or indirectly use this module.includeContent
- Whether to include binaries or not?cutPoints
- Cut Points to fetch for dependent data Modules. If null association cut points for dependent data modules will be used.
DataModule
s dependent on the DataModule
.ICCException
@Deprecated List<DataModule> getUsedDataModules(String moduleID, boolean fetchIndirectReferences) throws ICCException
DataModule
s that is used by the DataModule
identified by the given
moduleID
.moduleID
- ID of the DataModule
, for which the used modules are to be fetched.fetchIndirectReferences
- True, if you wish to fetch the modules that are directly or indirectly used by this module.
DataModule
s that is used by the DataModule
. Empty list returned, if the
module does not use any other module.ICCException
@Deprecated boolean isReferenced(String moduleID) throws ICCException
moduleID
- ID of the DataModule
whose dependencies are to be fetched.ICCException
@Deprecated boolean updateDependencies(DataModule oldModule, DataModule newModule) throws ICCException
oldModule
, in any dependent assets,
with the new data module newModule
.oldModule
- The old data module object.newModule
- The new data module object, which should be set as the new reference.ICCException
@Deprecated boolean updateEffectiveDependencies(DataModule oldModule, DataModule newModule, List<String> lettersToBeIgnored) throws ICCException
oldModule
, in any dependent assets,
with the new data module newModule
. The list of Letters names which are passed in the third parameter are ignored.oldModule
- The old data module object.newModule
- The new data module object, which should be set as the new reference.lettersToBeIgnored
- List of Letter Names which are to be ignored while updating the dependent Letters.ICCException
@Deprecated Set<Letter> updateDependencies(DataModule oldModule, DataModule newModule, List<Letter> letters) throws ICCException
oldModule
, in given dependent assets (passed as third parameter),
with the new data module newModule
.oldModule
- The old data module object.newModule
- The new data module object, which should be set as the new reference.letters
- List of letters required to be updated.ICCException
@Deprecated DataModule revertToLastPublished(String dataModuleId) throws ICCException
AssetService.revertToLastPublished(String)
instead.dataModuleId
- The data module ID.ICCException
@Deprecated DataModule retrieveVersion(String dataModuleId, Date publishDate)
dataModuleId
- The Data module ID.publishDate
- specifies the date for fetching published data module.ICCException
Copyright © 1982–2023 Adobe Systems Incorporated. All rights reserved.