@Deprecated public interface FragmentLayoutService
ContainerLayout
specific operations.Modifier and Type | Method and Description |
---|---|
FragmentLayout |
copyFragmentLayout(String oldFragmentLayoutID,
FragmentLayout newFragmentLayout)
Deprecated.
|
FragmentLayout |
createFragmentLayout(FragmentLayout fragmentLayout)
Deprecated.
|
Boolean |
fragmentLayoutExists(String fragmentLayoutName)
Deprecated.
|
List<FragmentLayout> |
getAllFragmentLayouts(Query query)
Deprecated.
|
List<Letter> |
getDependentLetters(String fragmentLayoutID)
Deprecated.
|
List<Letter> |
getDependentLetters(String fragmentLayoutID,
String cutPoints,
boolean includeContent)
Deprecated.
|
FragmentLayout |
getFragmentLayout(String fragmentLayoutID)
Deprecated.
|
boolean |
isReferenced(String fragmentLayoutID)
Deprecated.
|
FragmentLayout |
parseFragmentLayout(FragmentLayout fragmentLayout)
Deprecated.
|
FragmentLayout |
publishFragmentLayout(String fragmentLayoutID)
Deprecated.
Since 6.2. Use
PublishService.publishAssets(List) instead. |
FragmentLayout |
readFragmentLayout(String fragmentLayoutID)
Deprecated.
|
FragmentLayout |
retrieveVersion(String fragmentLayoutId,
Date publishDate)
Deprecated.
|
FragmentLayout |
revertToLastPublished(String fragmentLayoutId)
Deprecated.
Use
AssetService.revertToLastPublished(String) instead. |
List<FragmentLayout> |
searchFragmentsWithFMFragment(String fmFragmentLayoutPath)
Deprecated.
|
boolean |
updateDependencies(FragmentLayout oldFragmentLayout,
FragmentLayout newFragmentLayout)
Deprecated.
|
Set<Letter> |
updateDependencies(FragmentLayout oldFragmentLayout,
FragmentLayout newFragmentLayout,
List<ContainerLayoutAssignment> clas,
Map<ContainerLayoutAssignment,Letter> claMap)
Deprecated.
Update the references of the old FragmentLayout
oldFragmentLayout , in given dependent assets,
with the new FragmentLayout newFragmentLayout . |
boolean |
updateEffectiveDependencies(FragmentLayout oldFragmentLayout,
FragmentLayout newFragmentLayout,
List<String> lettersToBeIgnored)
Deprecated.
|
FragmentLayout |
updateFMFormInFragment(String fragmentId,
String fmFormPath)
Deprecated.
|
FragmentLayout |
updateFragmentLayout(FragmentLayout fragmentLayout)
Deprecated.
|
@Deprecated Boolean fragmentLayoutExists(String fragmentLayoutName) throws ICCException
fragmentLayoutName
- Name of the FragmentLayout.ICCException
@Deprecated List<FragmentLayout> getAllFragmentLayouts(Query query) throws ICCException
FragmentLayout
s filtered by the given Query
.query
- Query to select FragmentLayouts (supports only first level
attributes/properties of an object).FragmentLayout
objectsICCException
Statement
,
Query
@Deprecated List<FragmentLayout> searchFragmentsWithFMFragment(String fmFragmentLayoutPath) throws ICCException
FragmentLayout
s which use the xdp at path fmFragmentLayoutPath.fmFragmentLayoutPath
- path of the XDP used in fragments.FragmentLayout
objectsICCException
@Deprecated FragmentLayout publishFragmentLayout(String fragmentLayoutID) throws ICCException
PublishService.publishAssets(List)
instead.FragmentLayout
identified by the given FragmentLayoutID
.fragmentLayoutID
- ID of the FragmentLayout
.FragmentLayout
objectICCException
@Deprecated FragmentLayout getFragmentLayout(String fragmentLayoutID) throws ICCException
FragmentLayout
identified by the given FragmentLayoutID
.
This action is not audited for action type Read.fragmentLayoutID
- ID of the FragmentLayout
to be fetched.FragmentLayout
identified by the given FragmentLayoutID
.ICCException
@Deprecated FragmentLayout readFragmentLayout(String fragmentLayoutID) throws ICCException
FragmentLayout
identified by the given FragmentLayoutID
.
This action is audited for action type Read.fragmentLayoutID
- ID of the FragmentLayout
to be fetched.FragmentLayout
identified by the given FragmentLayoutID
.ICCException
@Deprecated FragmentLayout createFragmentLayout(FragmentLayout fragmentLayout) throws ICCException
FragmentLayout
object.fragmentLayout
- The FragmentLayout
to be created.FragmentLayout
objectICCException
@Deprecated FragmentLayout updateFMFormInFragment(String fragmentId, String fmFormPath) throws ICCException
FragmentLayout
Template.fragmentId
- id of object to be updated.fmFormPath
- path of fmForm to be updated.FragmentLayout
object.ICCException
@Deprecated FragmentLayout updateFragmentLayout(FragmentLayout fragmentLayout) throws ICCException
FragmentLayout
.fragmentLayout
- FragmentLayout
object to be updated.FragmentLayout
object.ICCException
@Deprecated FragmentLayout copyFragmentLayout(String oldFragmentLayoutID, FragmentLayout newFragmentLayout) throws ICCException
FragmentLayout
identified by the oldFragmentLayoutID
.
newFragmentLayout
does not have content in it, the content of the original FragmentLayout
is set in it.oldFragmentLayoutID
- ID of the original FragmentLayout
. Used to fetch the original content, if need be.newFragmentLayout
- copy of the original FragmentLayout (may have properties altered by the user)FragmentLayout
.ICCException
@Deprecated boolean isReferenced(String fragmentLayoutID) throws ICCException
fragmentLayoutID
- ID of the FragmentLayout
whose dependencies are to be fetched.ICCException
@Deprecated List<Letter> getDependentLetters(String fragmentLayoutID) throws ICCException
getDependentLetters(String, String, boolean)
instead.fragmentLayoutID
- ID of the FragmentLayout
whose dependencies are to be fetched.Letter
s which depend on the given FragmentLayout
.ICCException
@Deprecated List<Letter> getDependentLetters(String fragmentLayoutID, String cutPoints, boolean includeContent) throws ICCException
cutPoints
- cut points to be fetched for dependent letters. If null, letter association cut points will be usedincludeContent
- Whether to include binaries or not?fragmentLayoutID
- ID of the FragmentLayout
whose dependencies are to be fetched.Letter
s which depend on the given FragmentLayout
.ICCException
@Deprecated boolean updateDependencies(FragmentLayout oldFragmentLayout, FragmentLayout newFragmentLayout) throws ICCException
oldFragmentLayout
, in any dependent assets,
with the new FragmentLayout newFragmentLayout
.oldFragmentLayout
- The old FragmentLayout object.newFragmentLayout
- The new FragmentLayout object, which should be set as the new reference.ICCException
@Deprecated boolean updateEffectiveDependencies(FragmentLayout oldFragmentLayout, FragmentLayout newFragmentLayout, List<String> lettersToBeIgnored) throws ICCException
oldFragmentLayout
, in any dependent assets,
with the new FragmentLayout newFragmentLayout
. The list of Letters names which are passed in the third parameter are ignored.oldFragmentLayout
- The old FragmentLayout object.newFragmentLayout
- The new FragmentLayout 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
Set<Letter> updateDependencies(FragmentLayout oldFragmentLayout, FragmentLayout newFragmentLayout, List<ContainerLayoutAssignment> clas, Map<ContainerLayoutAssignment,Letter> claMap) throws ICCException
oldFragmentLayout
, in given dependent assets,
with the new FragmentLayout newFragmentLayout
.oldFragmentLayout
- The old FragmentLayout object.newFragmentLayout
- The new FragmentLayout object, which should be set as the new reference.clas
- List of container layout assignment that are required to be updated.claMap
- Map of container layout assignment and their parent letters.ICCException
@Deprecated FragmentLayout parseFragmentLayout(FragmentLayout fragmentLayout) throws ICCException
fragmentLayout
- FragmentLayout required to be parsedFragmentLayout
populated with target areas, fields and tables.ICCException
@Deprecated FragmentLayout revertToLastPublished(String fragmentLayoutId) throws ICCException
AssetService.revertToLastPublished(String)
instead.fragmentLayoutId
- The fragment layout ID.ICCException
@Deprecated FragmentLayout retrieveVersion(String fragmentLayoutId, Date publishDate)
fragmentLayoutId
- The FragmentLayout ID.publishDate
- specifies the date for fetching published FragmentLayout.ICCException
Copyright © 1982–2022 Adobe Systems Inc.. All rights reserved.