public interface IASLayoutDataService
extends net.anotheria.asg.service.ASGService
| Modifier and Type | Method and Description |
|---|---|
PageLayout |
createPageLayout(PageLayout pagelayout)
Creates a new PageLayout object.
|
java.util.List<PageLayout> |
createPageLayouts(java.util.List<PageLayout> list)
Creates multiple new PageLayout objects.
|
PageStyle |
createPageStyle(PageStyle pagestyle)
Creates a new PageStyle object.
|
java.util.List<PageStyle> |
createPageStyles(java.util.List<PageStyle> list)
Creates multiple new PageStyle objects.
|
void |
deletePageLayout(PageLayout pagelayout)
Deletes a PageLayout object.
|
void |
deletePageLayout(java.lang.String id)
Deletes a PageLayout object by id.
|
void |
deletePageLayouts(java.util.List<PageLayout> list)
Deletes multiple PageLayout object.
|
void |
deletePageStyle(PageStyle pagestyle)
Deletes a PageStyle object.
|
void |
deletePageStyle(java.lang.String id)
Deletes a PageStyle object by id.
|
void |
deletePageStyles(java.util.List<PageStyle> list)
Deletes multiple PageStyle object.
|
void |
executeParsingForDocument(DocumentName documentName,
org.codehaus.jettison.json.JSONObject data)
Save transferred document by its own type.
|
net.anotheria.anodoc.query2.QueryResult |
executeQueryOnAllObjects(net.anotheria.anodoc.query2.DocumentQuery query)
Executes a query on all data objects (documents, vo) which are part of this module and managed by this service.
|
net.anotheria.anodoc.query2.QueryResult |
executeQueryOnPageLayouts(net.anotheria.anodoc.query2.DocumentQuery query)
Executes a query.
|
net.anotheria.anodoc.query2.QueryResult |
executeQueryOnPageStyles(net.anotheria.anodoc.query2.DocumentQuery query)
Executes a query.
|
net.anotheria.util.xml.XMLNode |
exportPageLayoutsToXML(java.util.List<PageLayout> listPageLayouts)
Creates an xml element with selected contained data.
|
net.anotheria.util.xml.XMLNode |
exportPageStylesToXML(java.util.List<PageStyle> listPageStyles)
Creates an xml element with selected contained data.
|
net.anotheria.util.xml.XMLNode |
exportToXML()
creates an xml element with all contained data.
|
void |
fetchPageLayout(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
Create json object list dependencies for this PageLayout document.
|
void |
fetchPageStyle(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
Create json object list dependencies for this PageStyle document.
|
PageLayout |
getPageLayout(java.lang.String id)
Returns the PageLayout object with the specified id.
|
java.util.List<PageLayout> |
getPageLayouts()
Returns all PageLayouts objects stored.
|
java.util.List<PageLayout> |
getPageLayouts(net.anotheria.util.slicer.Segment aSegment)
Returns PageLayouts objects segment.
|
java.util.List<PageLayout> |
getPageLayouts(net.anotheria.util.sorter.SortType sortType)
Returns all PageLayouts objects sorted by given sortType.
|
java.util.List<PageLayout> |
getPageLayoutsByProperty(net.anotheria.anodoc.query2.QueryProperty... property)
Returns all PageLayout objects, where property matches.
|
java.util.List<PageLayout> |
getPageLayoutsByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns PageLayout objects segment, where property matches.
|
java.util.List<PageLayout> |
getPageLayoutsByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.util.sorter.SortType aSortType,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns PageLayout objects segment, where property matches, sorted.
|
java.util.List<PageLayout> |
getPageLayoutsByProperty(net.anotheria.util.sorter.SortType sortType,
net.anotheria.anodoc.query2.QueryProperty... property)
Returns all PageLayout objects, where property matches, sorted.
|
java.util.List<PageLayout> |
getPageLayoutsByProperty(java.lang.String propertyName,
java.lang.Object value)
Returns all PageLayout objects, where property with given name equals object.
|
java.util.List<PageLayout> |
getPageLayoutsByProperty(java.lang.String propertyName,
java.lang.Object value,
net.anotheria.util.sorter.SortType sortType)
Returns all PageLayout objects, where property with given name equals object, sorted.
|
int |
getPageLayoutsCount()
Returns all PageLayouts count.
|
PageStyle |
getPageStyle(java.lang.String id)
Returns the PageStyle object with the specified id.
|
java.util.List<PageStyle> |
getPageStyles()
Returns all PageStyles objects stored.
|
java.util.List<PageStyle> |
getPageStyles(net.anotheria.util.slicer.Segment aSegment)
Returns PageStyles objects segment.
|
java.util.List<PageStyle> |
getPageStyles(net.anotheria.util.sorter.SortType sortType)
Returns all PageStyles objects sorted by given sortType.
|
java.util.List<PageStyle> |
getPageStylesByProperty(net.anotheria.anodoc.query2.QueryProperty... property)
Returns all PageStyle objects, where property matches.
|
java.util.List<PageStyle> |
getPageStylesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns PageStyle objects segment, where property matches.
|
java.util.List<PageStyle> |
getPageStylesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.util.sorter.SortType aSortType,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns PageStyle objects segment, where property matches, sorted.
|
java.util.List<PageStyle> |
getPageStylesByProperty(net.anotheria.util.sorter.SortType sortType,
net.anotheria.anodoc.query2.QueryProperty... property)
Returns all PageStyle objects, where property matches, sorted.
|
java.util.List<PageStyle> |
getPageStylesByProperty(java.lang.String propertyName,
java.lang.Object value)
Returns all PageStyle objects, where property with given name equals object.
|
java.util.List<PageStyle> |
getPageStylesByProperty(java.lang.String propertyName,
java.lang.Object value,
net.anotheria.util.sorter.SortType sortType)
Returns all PageStyle objects, where property with given name equals object, sorted.
|
int |
getPageStylesCount()
Returns all PageStyles count.
|
PageLayout |
importPageLayout(PageLayout pagelayout)
Imports a new PageLayout object.
|
java.util.List<PageLayout> |
importPageLayouts(java.util.List<PageLayout> list)
Imports multiple new PageLayout object.
|
PageStyle |
importPageStyle(PageStyle pagestyle)
Imports a new PageStyle object.
|
java.util.List<PageStyle> |
importPageStyles(java.util.List<PageStyle> list)
Imports multiple new PageStyle object.
|
PageLayout |
updatePageLayout(PageLayout pagelayout)
Updates a PageLayout object.
|
java.util.List<PageLayout> |
updatePageLayouts(java.util.List<PageLayout> list)
Updates multiple PageLayout objects.
|
PageStyle |
updatePageStyle(PageStyle pagestyle)
Updates a PageStyle object.
|
java.util.List<PageStyle> |
updatePageStyles(java.util.List<PageStyle> list)
Updates multiple PageStyle objects.
|
java.util.List<PageStyle> getPageStyles() throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageStyle> getPageStyles(net.anotheria.util.sorter.SortType sortType) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionvoid deletePageStyle(java.lang.String id)
throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionvoid deletePageStyle(PageStyle pagestyle) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionvoid deletePageStyles(java.util.List<PageStyle> list) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionPageStyle getPageStyle(java.lang.String id) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionPageStyle importPageStyle(PageStyle pagestyle) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageStyle> importPageStyles(java.util.List<PageStyle> list) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionPageStyle createPageStyle(PageStyle pagestyle) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageStyle> createPageStyles(java.util.List<PageStyle> list) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionPageStyle updatePageStyle(PageStyle pagestyle) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageStyle> updatePageStyles(java.util.List<PageStyle> list) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageStyle> getPageStylesByProperty(java.lang.String propertyName, java.lang.Object value) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageStyle> getPageStylesByProperty(java.lang.String propertyName, java.lang.Object value, net.anotheria.util.sorter.SortType sortType) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionnet.anotheria.anodoc.query2.QueryResult executeQueryOnPageStyles(net.anotheria.anodoc.query2.DocumentQuery query)
throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageStyle> getPageStylesByProperty(net.anotheria.anodoc.query2.QueryProperty... property) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageStyle> getPageStylesByProperty(net.anotheria.util.sorter.SortType sortType, net.anotheria.anodoc.query2.QueryProperty... property) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionint getPageStylesCount()
throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageStyle> getPageStyles(net.anotheria.util.slicer.Segment aSegment) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageStyle> getPageStylesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageStyle> getPageStylesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.util.sorter.SortType aSortType, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionnet.anotheria.util.xml.XMLNode exportPageStylesToXML(java.util.List<PageStyle> listPageStyles) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionvoid fetchPageStyle(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> getPageLayouts() throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> getPageLayouts(net.anotheria.util.sorter.SortType sortType) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionvoid deletePageLayout(java.lang.String id)
throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionvoid deletePageLayout(PageLayout pagelayout) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionvoid deletePageLayouts(java.util.List<PageLayout> list) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionPageLayout getPageLayout(java.lang.String id) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionPageLayout importPageLayout(PageLayout pagelayout) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> importPageLayouts(java.util.List<PageLayout> list) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionPageLayout createPageLayout(PageLayout pagelayout) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> createPageLayouts(java.util.List<PageLayout> list) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionPageLayout updatePageLayout(PageLayout pagelayout) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> updatePageLayouts(java.util.List<PageLayout> list) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> getPageLayoutsByProperty(java.lang.String propertyName, java.lang.Object value) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> getPageLayoutsByProperty(java.lang.String propertyName, java.lang.Object value, net.anotheria.util.sorter.SortType sortType) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionnet.anotheria.anodoc.query2.QueryResult executeQueryOnPageLayouts(net.anotheria.anodoc.query2.DocumentQuery query)
throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> getPageLayoutsByProperty(net.anotheria.anodoc.query2.QueryProperty... property) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> getPageLayoutsByProperty(net.anotheria.util.sorter.SortType sortType, net.anotheria.anodoc.query2.QueryProperty... property) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionint getPageLayoutsCount()
throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> getPageLayouts(net.anotheria.util.slicer.Segment aSegment) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> getPageLayoutsByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionjava.util.List<PageLayout> getPageLayoutsByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.util.sorter.SortType aSortType, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionnet.anotheria.util.xml.XMLNode exportPageLayoutsToXML(java.util.List<PageLayout> listPageLayouts) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionvoid fetchPageLayout(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionvoid executeParsingForDocument(DocumentName documentName, org.codehaus.jettison.json.JSONObject data) throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionnet.anotheria.anodoc.query2.QueryResult executeQueryOnAllObjects(net.anotheria.anodoc.query2.DocumentQuery query)
throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionnet.anotheria.util.xml.XMLNode exportToXML()
throws ASLayoutDataServiceException
ASLayoutDataServiceExceptionCopyright © 2012-2023 anotheria.net. All Rights Reserved.