public interface IASResourceDataService
extends net.anotheria.asg.service.ASGService
| Modifier and Type | Method and Description |
|---|---|
void |
copyMultilingualAttributesInAllImages(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
In all documents of type Image copies all multilingual fields from sourceLanguage to targetLanguage.
|
void |
copyMultilingualAttributesInAllLocalizationBundles(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
In all documents of type LocalizationBundle copies all multilingual fields from sourceLanguage to targetLanguage.
|
void |
copyMultilingualAttributesInAllMailTemplates(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
In all documents of type MailTemplate copies all multilingual fields from sourceLanguage to targetLanguage.
|
void |
copyMultilingualAttributesInAllObjects(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
Copies all multilingual fields from sourceLanguage to targetLanguage in all data objects (documents, vo) which are part of this module and managed by this service.
|
void |
copyMultilingualAttributesInAllPdfTemplates(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
In all documents of type PdfTemplate copies all multilingual fields from sourceLanguage to targetLanguage.
|
void |
copyMultilingualAttributesInAllPushNotificationTemplates(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
In all documents of type PushNotificationTemplate copies all multilingual fields from sourceLanguage to targetLanguage.
|
void |
copyMultilingualAttributesInAllTextResources(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
In all documents of type TextResource copies all multilingual fields from sourceLanguage to targetLanguage.
|
FileLink |
createFileLink(FileLink filelink)
Creates a new FileLink object.
|
java.util.List<FileLink> |
createFileLinks(java.util.List<FileLink> list)
Creates multiple new FileLink objects.
|
Image |
createImage(Image image)
Creates a new Image object.
|
java.util.List<Image> |
createImages(java.util.List<Image> list)
Creates multiple new Image objects.
|
LocalizationBundle |
createLocalizationBundle(LocalizationBundle localizationbundle)
Creates a new LocalizationBundle object.
|
java.util.List<LocalizationBundle> |
createLocalizationBundles(java.util.List<LocalizationBundle> list)
Creates multiple new LocalizationBundle objects.
|
MailTemplate |
createMailTemplate(MailTemplate mailtemplate)
Creates a new MailTemplate object.
|
java.util.List<MailTemplate> |
createMailTemplates(java.util.List<MailTemplate> list)
Creates multiple new MailTemplate objects.
|
PdfTemplate |
createPdfTemplate(PdfTemplate pdftemplate)
Creates a new PdfTemplate object.
|
java.util.List<PdfTemplate> |
createPdfTemplates(java.util.List<PdfTemplate> list)
Creates multiple new PdfTemplate objects.
|
PushNotificationTemplate |
createPushNotificationTemplate(PushNotificationTemplate pushnotificationtemplate)
Creates a new PushNotificationTemplate object.
|
java.util.List<PushNotificationTemplate> |
createPushNotificationTemplates(java.util.List<PushNotificationTemplate> list)
Creates multiple new PushNotificationTemplate objects.
|
TextResource |
createTextResource(TextResource textresource)
Creates a new TextResource object.
|
java.util.List<TextResource> |
createTextResources(java.util.List<TextResource> list)
Creates multiple new TextResource objects.
|
void |
deleteFileLink(FileLink filelink)
Deletes a FileLink object.
|
void |
deleteFileLink(java.lang.String id)
Deletes a FileLink object by id.
|
void |
deleteFileLinks(java.util.List<FileLink> list)
Deletes multiple FileLink object.
|
void |
deleteImage(Image image)
Deletes a Image object.
|
void |
deleteImage(java.lang.String id)
Deletes a Image object by id.
|
void |
deleteImages(java.util.List<Image> list)
Deletes multiple Image object.
|
void |
deleteLocalizationBundle(LocalizationBundle localizationbundle)
Deletes a LocalizationBundle object.
|
void |
deleteLocalizationBundle(java.lang.String id)
Deletes a LocalizationBundle object by id.
|
void |
deleteLocalizationBundles(java.util.List<LocalizationBundle> list)
Deletes multiple LocalizationBundle object.
|
void |
deleteMailTemplate(MailTemplate mailtemplate)
Deletes a MailTemplate object.
|
void |
deleteMailTemplate(java.lang.String id)
Deletes a MailTemplate object by id.
|
void |
deleteMailTemplates(java.util.List<MailTemplate> list)
Deletes multiple MailTemplate object.
|
void |
deletePdfTemplate(PdfTemplate pdftemplate)
Deletes a PdfTemplate object.
|
void |
deletePdfTemplate(java.lang.String id)
Deletes a PdfTemplate object by id.
|
void |
deletePdfTemplates(java.util.List<PdfTemplate> list)
Deletes multiple PdfTemplate object.
|
void |
deletePushNotificationTemplate(PushNotificationTemplate pushnotificationtemplate)
Deletes a PushNotificationTemplate object.
|
void |
deletePushNotificationTemplate(java.lang.String id)
Deletes a PushNotificationTemplate object by id.
|
void |
deletePushNotificationTemplates(java.util.List<PushNotificationTemplate> list)
Deletes multiple PushNotificationTemplate object.
|
void |
deleteTextResource(java.lang.String id)
Deletes a TextResource object by id.
|
void |
deleteTextResource(TextResource textresource)
Deletes a TextResource object.
|
void |
deleteTextResources(java.util.List<TextResource> list)
Deletes multiple TextResource 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 |
executeQueryOnFileLinks(net.anotheria.anodoc.query2.DocumentQuery query)
Executes a query.
|
net.anotheria.anodoc.query2.QueryResult |
executeQueryOnImages(net.anotheria.anodoc.query2.DocumentQuery query)
Executes a query.
|
net.anotheria.anodoc.query2.QueryResult |
executeQueryOnLocalizationBundles(net.anotheria.anodoc.query2.DocumentQuery query)
Executes a query.
|
net.anotheria.anodoc.query2.QueryResult |
executeQueryOnMailTemplates(net.anotheria.anodoc.query2.DocumentQuery query)
Executes a query.
|
net.anotheria.anodoc.query2.QueryResult |
executeQueryOnPdfTemplates(net.anotheria.anodoc.query2.DocumentQuery query)
Executes a query.
|
net.anotheria.anodoc.query2.QueryResult |
executeQueryOnPushNotificationTemplates(net.anotheria.anodoc.query2.DocumentQuery query)
Executes a query.
|
net.anotheria.anodoc.query2.QueryResult |
executeQueryOnTextResources(net.anotheria.anodoc.query2.DocumentQuery query)
Executes a query.
|
net.anotheria.util.xml.XMLNode |
exportFileLinksToXML(java.util.List<FileLink> listFileLinks)
Creates an xml element with selected contained data.
|
net.anotheria.util.xml.XMLNode |
exportFileLinksToXML(java.lang.String[] languages,
java.util.List<FileLink> listFileLinks)
creates an xml element with selected contained data but only selected languages in multilingual attributes
|
net.anotheria.util.xml.XMLNode |
exportImagesToXML(java.util.List<Image> listImages)
Creates an xml element with selected contained data.
|
net.anotheria.util.xml.XMLNode |
exportImagesToXML(java.lang.String[] languages,
java.util.List<Image> listImages)
creates an xml element with selected contained data but only selected languages in multilingual attributes
|
net.anotheria.util.xml.XMLNode |
exportLocalizationBundlesToXML(java.util.List<LocalizationBundle> listLocalizationBundles)
Creates an xml element with selected contained data.
|
net.anotheria.util.xml.XMLNode |
exportLocalizationBundlesToXML(java.lang.String[] languages,
java.util.List<LocalizationBundle> listLocalizationBundles)
creates an xml element with selected contained data but only selected languages in multilingual attributes
|
net.anotheria.util.xml.XMLNode |
exportMailTemplatesToXML(java.util.List<MailTemplate> listMailTemplates)
Creates an xml element with selected contained data.
|
net.anotheria.util.xml.XMLNode |
exportMailTemplatesToXML(java.lang.String[] languages,
java.util.List<MailTemplate> listMailTemplates)
creates an xml element with selected contained data but only selected languages in multilingual attributes
|
net.anotheria.util.xml.XMLNode |
exportPdfTemplatesToXML(java.util.List<PdfTemplate> listPdfTemplates)
Creates an xml element with selected contained data.
|
net.anotheria.util.xml.XMLNode |
exportPdfTemplatesToXML(java.lang.String[] languages,
java.util.List<PdfTemplate> listPdfTemplates)
creates an xml element with selected contained data but only selected languages in multilingual attributes
|
net.anotheria.util.xml.XMLNode |
exportPushNotificationTemplatesToXML(java.util.List<PushNotificationTemplate> listPushNotificationTemplates)
Creates an xml element with selected contained data.
|
net.anotheria.util.xml.XMLNode |
exportPushNotificationTemplatesToXML(java.lang.String[] languages,
java.util.List<PushNotificationTemplate> listPushNotificationTemplates)
creates an xml element with selected contained data but only selected languages in multilingual attributes
|
net.anotheria.util.xml.XMLNode |
exportTextResourcesToXML(java.util.List<TextResource> listTextResources)
Creates an xml element with selected contained data.
|
net.anotheria.util.xml.XMLNode |
exportTextResourcesToXML(java.lang.String[] languages,
java.util.List<TextResource> listTextResources)
creates an xml element with selected contained data but only selected languages in multilingual attributes
|
net.anotheria.util.xml.XMLNode |
exportToXML()
creates an xml element with all contained data.
|
net.anotheria.util.xml.XMLNode |
exportToXML(java.lang.String[] languages)
creates an xml element with all contained data but only selected languages in multilingual attributes.
|
void |
fetchFileLink(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
Create json object list dependencies for this FileLink document.
|
void |
fetchImage(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
Create json object list dependencies for this Image document.
|
void |
fetchLocalizationBundle(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
Create json object list dependencies for this LocalizationBundle document.
|
void |
fetchMailTemplate(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
Create json object list dependencies for this MailTemplate document.
|
void |
fetchPdfTemplate(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
Create json object list dependencies for this PdfTemplate document.
|
void |
fetchPushNotificationTemplate(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
Create json object list dependencies for this PushNotificationTemplate document.
|
void |
fetchTextResource(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
Create json object list dependencies for this TextResource document.
|
FileLink |
getFileLink(java.lang.String id)
Returns the FileLink object with the specified id.
|
java.util.List<FileLink> |
getFileLinks()
Returns all FileLinks objects stored.
|
java.util.List<FileLink> |
getFileLinks(net.anotheria.util.slicer.Segment aSegment)
Returns FileLinks objects segment.
|
java.util.List<FileLink> |
getFileLinks(net.anotheria.util.sorter.SortType sortType)
Returns all FileLinks objects sorted by given sortType.
|
java.util.List<FileLink> |
getFileLinksByProperty(net.anotheria.anodoc.query2.QueryProperty... property)
Returns all FileLink objects, where property matches.
|
java.util.List<FileLink> |
getFileLinksByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns FileLink objects segment, where property matches.
|
java.util.List<FileLink> |
getFileLinksByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.util.sorter.SortType aSortType,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns FileLink objects segment, where property matches, sorted.
|
java.util.List<FileLink> |
getFileLinksByProperty(net.anotheria.util.sorter.SortType sortType,
net.anotheria.anodoc.query2.QueryProperty... property)
Returns all FileLink objects, where property matches, sorted.
|
java.util.List<FileLink> |
getFileLinksByProperty(java.lang.String propertyName,
java.lang.Object value)
Returns all FileLink objects, where property with given name equals object.
|
java.util.List<FileLink> |
getFileLinksByProperty(java.lang.String propertyName,
java.lang.Object value,
net.anotheria.util.sorter.SortType sortType)
Returns all FileLink objects, where property with given name equals object, sorted.
|
int |
getFileLinksCount()
Returns all FileLinks count.
|
Image |
getImage(java.lang.String id)
Returns the Image object with the specified id.
|
java.util.List<Image> |
getImages()
Returns all Images objects stored.
|
java.util.List<Image> |
getImages(net.anotheria.util.slicer.Segment aSegment)
Returns Images objects segment.
|
java.util.List<Image> |
getImages(net.anotheria.util.sorter.SortType sortType)
Returns all Images objects sorted by given sortType.
|
java.util.List<Image> |
getImagesByProperty(net.anotheria.anodoc.query2.QueryProperty... property)
Returns all Image objects, where property matches.
|
java.util.List<Image> |
getImagesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns Image objects segment, where property matches.
|
java.util.List<Image> |
getImagesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.util.sorter.SortType aSortType,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns Image objects segment, where property matches, sorted.
|
java.util.List<Image> |
getImagesByProperty(net.anotheria.util.sorter.SortType sortType,
net.anotheria.anodoc.query2.QueryProperty... property)
Returns all Image objects, where property matches, sorted.
|
java.util.List<Image> |
getImagesByProperty(java.lang.String propertyName,
java.lang.Object value)
Returns all Image objects, where property with given name equals object.
|
java.util.List<Image> |
getImagesByProperty(java.lang.String propertyName,
java.lang.Object value,
net.anotheria.util.sorter.SortType sortType)
Returns all Image objects, where property with given name equals object, sorted.
|
int |
getImagesCount()
Returns all Images count.
|
LocalizationBundle |
getLocalizationBundle(java.lang.String id)
Returns the LocalizationBundle object with the specified id.
|
java.util.List<LocalizationBundle> |
getLocalizationBundles()
Returns all LocalizationBundles objects stored.
|
java.util.List<LocalizationBundle> |
getLocalizationBundles(net.anotheria.util.slicer.Segment aSegment)
Returns LocalizationBundles objects segment.
|
java.util.List<LocalizationBundle> |
getLocalizationBundles(net.anotheria.util.sorter.SortType sortType)
Returns all LocalizationBundles objects sorted by given sortType.
|
java.util.List<LocalizationBundle> |
getLocalizationBundlesByProperty(net.anotheria.anodoc.query2.QueryProperty... property)
Returns all LocalizationBundle objects, where property matches.
|
java.util.List<LocalizationBundle> |
getLocalizationBundlesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns LocalizationBundle objects segment, where property matches.
|
java.util.List<LocalizationBundle> |
getLocalizationBundlesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.util.sorter.SortType aSortType,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns LocalizationBundle objects segment, where property matches, sorted.
|
java.util.List<LocalizationBundle> |
getLocalizationBundlesByProperty(net.anotheria.util.sorter.SortType sortType,
net.anotheria.anodoc.query2.QueryProperty... property)
Returns all LocalizationBundle objects, where property matches, sorted.
|
java.util.List<LocalizationBundle> |
getLocalizationBundlesByProperty(java.lang.String propertyName,
java.lang.Object value)
Returns all LocalizationBundle objects, where property with given name equals object.
|
java.util.List<LocalizationBundle> |
getLocalizationBundlesByProperty(java.lang.String propertyName,
java.lang.Object value,
net.anotheria.util.sorter.SortType sortType)
Returns all LocalizationBundle objects, where property with given name equals object, sorted.
|
int |
getLocalizationBundlesCount()
Returns all LocalizationBundles count.
|
MailTemplate |
getMailTemplate(java.lang.String id)
Returns the MailTemplate object with the specified id.
|
java.util.List<MailTemplate> |
getMailTemplates()
Returns all MailTemplates objects stored.
|
java.util.List<MailTemplate> |
getMailTemplates(net.anotheria.util.slicer.Segment aSegment)
Returns MailTemplates objects segment.
|
java.util.List<MailTemplate> |
getMailTemplates(net.anotheria.util.sorter.SortType sortType)
Returns all MailTemplates objects sorted by given sortType.
|
java.util.List<MailTemplate> |
getMailTemplatesByProperty(net.anotheria.anodoc.query2.QueryProperty... property)
Returns all MailTemplate objects, where property matches.
|
java.util.List<MailTemplate> |
getMailTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns MailTemplate objects segment, where property matches.
|
java.util.List<MailTemplate> |
getMailTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.util.sorter.SortType aSortType,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns MailTemplate objects segment, where property matches, sorted.
|
java.util.List<MailTemplate> |
getMailTemplatesByProperty(net.anotheria.util.sorter.SortType sortType,
net.anotheria.anodoc.query2.QueryProperty... property)
Returns all MailTemplate objects, where property matches, sorted.
|
java.util.List<MailTemplate> |
getMailTemplatesByProperty(java.lang.String propertyName,
java.lang.Object value)
Returns all MailTemplate objects, where property with given name equals object.
|
java.util.List<MailTemplate> |
getMailTemplatesByProperty(java.lang.String propertyName,
java.lang.Object value,
net.anotheria.util.sorter.SortType sortType)
Returns all MailTemplate objects, where property with given name equals object, sorted.
|
int |
getMailTemplatesCount()
Returns all MailTemplates count.
|
PdfTemplate |
getPdfTemplate(java.lang.String id)
Returns the PdfTemplate object with the specified id.
|
java.util.List<PdfTemplate> |
getPdfTemplates()
Returns all PdfTemplates objects stored.
|
java.util.List<PdfTemplate> |
getPdfTemplates(net.anotheria.util.slicer.Segment aSegment)
Returns PdfTemplates objects segment.
|
java.util.List<PdfTemplate> |
getPdfTemplates(net.anotheria.util.sorter.SortType sortType)
Returns all PdfTemplates objects sorted by given sortType.
|
java.util.List<PdfTemplate> |
getPdfTemplatesByProperty(net.anotheria.anodoc.query2.QueryProperty... property)
Returns all PdfTemplate objects, where property matches.
|
java.util.List<PdfTemplate> |
getPdfTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns PdfTemplate objects segment, where property matches.
|
java.util.List<PdfTemplate> |
getPdfTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.util.sorter.SortType aSortType,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns PdfTemplate objects segment, where property matches, sorted.
|
java.util.List<PdfTemplate> |
getPdfTemplatesByProperty(net.anotheria.util.sorter.SortType sortType,
net.anotheria.anodoc.query2.QueryProperty... property)
Returns all PdfTemplate objects, where property matches, sorted.
|
java.util.List<PdfTemplate> |
getPdfTemplatesByProperty(java.lang.String propertyName,
java.lang.Object value)
Returns all PdfTemplate objects, where property with given name equals object.
|
java.util.List<PdfTemplate> |
getPdfTemplatesByProperty(java.lang.String propertyName,
java.lang.Object value,
net.anotheria.util.sorter.SortType sortType)
Returns all PdfTemplate objects, where property with given name equals object, sorted.
|
int |
getPdfTemplatesCount()
Returns all PdfTemplates count.
|
PushNotificationTemplate |
getPushNotificationTemplate(java.lang.String id)
Returns the PushNotificationTemplate object with the specified id.
|
java.util.List<PushNotificationTemplate> |
getPushNotificationTemplates()
Returns all PushNotificationTemplates objects stored.
|
java.util.List<PushNotificationTemplate> |
getPushNotificationTemplates(net.anotheria.util.slicer.Segment aSegment)
Returns PushNotificationTemplates objects segment.
|
java.util.List<PushNotificationTemplate> |
getPushNotificationTemplates(net.anotheria.util.sorter.SortType sortType)
Returns all PushNotificationTemplates objects sorted by given sortType.
|
java.util.List<PushNotificationTemplate> |
getPushNotificationTemplatesByProperty(net.anotheria.anodoc.query2.QueryProperty... property)
Returns all PushNotificationTemplate objects, where property matches.
|
java.util.List<PushNotificationTemplate> |
getPushNotificationTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns PushNotificationTemplate objects segment, where property matches.
|
java.util.List<PushNotificationTemplate> |
getPushNotificationTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.util.sorter.SortType aSortType,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns PushNotificationTemplate objects segment, where property matches, sorted.
|
java.util.List<PushNotificationTemplate> |
getPushNotificationTemplatesByProperty(net.anotheria.util.sorter.SortType sortType,
net.anotheria.anodoc.query2.QueryProperty... property)
Returns all PushNotificationTemplate objects, where property matches, sorted.
|
java.util.List<PushNotificationTemplate> |
getPushNotificationTemplatesByProperty(java.lang.String propertyName,
java.lang.Object value)
Returns all PushNotificationTemplate objects, where property with given name equals object.
|
java.util.List<PushNotificationTemplate> |
getPushNotificationTemplatesByProperty(java.lang.String propertyName,
java.lang.Object value,
net.anotheria.util.sorter.SortType sortType)
Returns all PushNotificationTemplate objects, where property with given name equals object, sorted.
|
int |
getPushNotificationTemplatesCount()
Returns all PushNotificationTemplates count.
|
TextResource |
getTextResource(java.lang.String id)
Returns the TextResource object with the specified id.
|
java.util.List<TextResource> |
getTextResources()
Returns all TextResources objects stored.
|
java.util.List<TextResource> |
getTextResources(net.anotheria.util.slicer.Segment aSegment)
Returns TextResources objects segment.
|
java.util.List<TextResource> |
getTextResources(net.anotheria.util.sorter.SortType sortType)
Returns all TextResources objects sorted by given sortType.
|
java.util.List<TextResource> |
getTextResourcesByProperty(net.anotheria.anodoc.query2.QueryProperty... property)
Returns all TextResource objects, where property matches.
|
java.util.List<TextResource> |
getTextResourcesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns TextResource objects segment, where property matches.
|
java.util.List<TextResource> |
getTextResourcesByProperty(net.anotheria.util.slicer.Segment aSegment,
net.anotheria.util.sorter.SortType aSortType,
net.anotheria.anodoc.query2.QueryProperty... aProperty)
Returns TextResource objects segment, where property matches, sorted.
|
java.util.List<TextResource> |
getTextResourcesByProperty(net.anotheria.util.sorter.SortType sortType,
net.anotheria.anodoc.query2.QueryProperty... property)
Returns all TextResource objects, where property matches, sorted.
|
java.util.List<TextResource> |
getTextResourcesByProperty(java.lang.String propertyName,
java.lang.Object value)
Returns all TextResource objects, where property with given name equals object.
|
java.util.List<TextResource> |
getTextResourcesByProperty(java.lang.String propertyName,
java.lang.Object value,
net.anotheria.util.sorter.SortType sortType)
Returns all TextResource objects, where property with given name equals object, sorted.
|
int |
getTextResourcesCount()
Returns all TextResources count.
|
FileLink |
importFileLink(FileLink filelink)
Imports a new FileLink object.
|
java.util.List<FileLink> |
importFileLinks(java.util.List<FileLink> list)
Imports multiple new FileLink object.
|
Image |
importImage(Image image)
Imports a new Image object.
|
java.util.List<Image> |
importImages(java.util.List<Image> list)
Imports multiple new Image object.
|
LocalizationBundle |
importLocalizationBundle(LocalizationBundle localizationbundle)
Imports a new LocalizationBundle object.
|
java.util.List<LocalizationBundle> |
importLocalizationBundles(java.util.List<LocalizationBundle> list)
Imports multiple new LocalizationBundle object.
|
MailTemplate |
importMailTemplate(MailTemplate mailtemplate)
Imports a new MailTemplate object.
|
java.util.List<MailTemplate> |
importMailTemplates(java.util.List<MailTemplate> list)
Imports multiple new MailTemplate object.
|
PdfTemplate |
importPdfTemplate(PdfTemplate pdftemplate)
Imports a new PdfTemplate object.
|
java.util.List<PdfTemplate> |
importPdfTemplates(java.util.List<PdfTemplate> list)
Imports multiple new PdfTemplate object.
|
PushNotificationTemplate |
importPushNotificationTemplate(PushNotificationTemplate pushnotificationtemplate)
Imports a new PushNotificationTemplate object.
|
java.util.List<PushNotificationTemplate> |
importPushNotificationTemplates(java.util.List<PushNotificationTemplate> list)
Imports multiple new PushNotificationTemplate object.
|
TextResource |
importTextResource(TextResource textresource)
Imports a new TextResource object.
|
java.util.List<TextResource> |
importTextResources(java.util.List<TextResource> list)
Imports multiple new TextResource object.
|
FileLink |
updateFileLink(FileLink filelink)
Updates a FileLink object.
|
java.util.List<FileLink> |
updateFileLinks(java.util.List<FileLink> list)
Updates multiple FileLink objects.
|
Image |
updateImage(Image image)
Updates a Image object.
|
java.util.List<Image> |
updateImages(java.util.List<Image> list)
Updates multiple Image objects.
|
LocalizationBundle |
updateLocalizationBundle(LocalizationBundle localizationbundle)
Updates a LocalizationBundle object.
|
java.util.List<LocalizationBundle> |
updateLocalizationBundles(java.util.List<LocalizationBundle> list)
Updates multiple LocalizationBundle objects.
|
MailTemplate |
updateMailTemplate(MailTemplate mailtemplate)
Updates a MailTemplate object.
|
java.util.List<MailTemplate> |
updateMailTemplates(java.util.List<MailTemplate> list)
Updates multiple MailTemplate objects.
|
PdfTemplate |
updatePdfTemplate(PdfTemplate pdftemplate)
Updates a PdfTemplate object.
|
java.util.List<PdfTemplate> |
updatePdfTemplates(java.util.List<PdfTemplate> list)
Updates multiple PdfTemplate objects.
|
PushNotificationTemplate |
updatePushNotificationTemplate(PushNotificationTemplate pushnotificationtemplate)
Updates a PushNotificationTemplate object.
|
java.util.List<PushNotificationTemplate> |
updatePushNotificationTemplates(java.util.List<PushNotificationTemplate> list)
Updates multiple PushNotificationTemplate objects.
|
TextResource |
updateTextResource(TextResource textresource)
Updates a TextResource object.
|
java.util.List<TextResource> |
updateTextResources(java.util.List<TextResource> list)
Updates multiple TextResource objects.
|
java.util.List<TextResource> getTextResources() throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<TextResource> getTextResources(net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteTextResource(java.lang.String id)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteTextResource(TextResource textresource) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteTextResources(java.util.List<TextResource> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionTextResource getTextResource(java.lang.String id) throws ASResourceDataServiceException
ASResourceDataServiceExceptionTextResource importTextResource(TextResource textresource) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<TextResource> importTextResources(java.util.List<TextResource> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionTextResource createTextResource(TextResource textresource) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<TextResource> createTextResources(java.util.List<TextResource> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionTextResource updateTextResource(TextResource textresource) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<TextResource> updateTextResources(java.util.List<TextResource> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<TextResource> getTextResourcesByProperty(java.lang.String propertyName, java.lang.Object value) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<TextResource> getTextResourcesByProperty(java.lang.String propertyName, java.lang.Object value, net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.anodoc.query2.QueryResult executeQueryOnTextResources(net.anotheria.anodoc.query2.DocumentQuery query)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<TextResource> getTextResourcesByProperty(net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<TextResource> getTextResourcesByProperty(net.anotheria.util.sorter.SortType sortType, net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionint getTextResourcesCount()
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<TextResource> getTextResources(net.anotheria.util.slicer.Segment aSegment) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<TextResource> getTextResourcesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<TextResource> getTextResourcesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.util.sorter.SortType aSortType, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid copyMultilingualAttributesInAllTextResources(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportTextResourcesToXML(java.util.List<TextResource> listTextResources) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportTextResourcesToXML(java.lang.String[] languages,
java.util.List<TextResource> listTextResources)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid fetchTextResource(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> getLocalizationBundles() throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> getLocalizationBundles(net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteLocalizationBundle(java.lang.String id)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteLocalizationBundle(LocalizationBundle localizationbundle) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteLocalizationBundles(java.util.List<LocalizationBundle> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionLocalizationBundle getLocalizationBundle(java.lang.String id) throws ASResourceDataServiceException
ASResourceDataServiceExceptionLocalizationBundle importLocalizationBundle(LocalizationBundle localizationbundle) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> importLocalizationBundles(java.util.List<LocalizationBundle> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionLocalizationBundle createLocalizationBundle(LocalizationBundle localizationbundle) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> createLocalizationBundles(java.util.List<LocalizationBundle> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionLocalizationBundle updateLocalizationBundle(LocalizationBundle localizationbundle) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> updateLocalizationBundles(java.util.List<LocalizationBundle> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> getLocalizationBundlesByProperty(java.lang.String propertyName, java.lang.Object value) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> getLocalizationBundlesByProperty(java.lang.String propertyName, java.lang.Object value, net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.anodoc.query2.QueryResult executeQueryOnLocalizationBundles(net.anotheria.anodoc.query2.DocumentQuery query)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> getLocalizationBundlesByProperty(net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> getLocalizationBundlesByProperty(net.anotheria.util.sorter.SortType sortType, net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionint getLocalizationBundlesCount()
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> getLocalizationBundles(net.anotheria.util.slicer.Segment aSegment) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> getLocalizationBundlesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<LocalizationBundle> getLocalizationBundlesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.util.sorter.SortType aSortType, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid copyMultilingualAttributesInAllLocalizationBundles(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportLocalizationBundlesToXML(java.util.List<LocalizationBundle> listLocalizationBundles) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportLocalizationBundlesToXML(java.lang.String[] languages,
java.util.List<LocalizationBundle> listLocalizationBundles)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid fetchLocalizationBundle(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> getMailTemplates() throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> getMailTemplates(net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteMailTemplate(java.lang.String id)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteMailTemplate(MailTemplate mailtemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteMailTemplates(java.util.List<MailTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionMailTemplate getMailTemplate(java.lang.String id) throws ASResourceDataServiceException
ASResourceDataServiceExceptionMailTemplate importMailTemplate(MailTemplate mailtemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> importMailTemplates(java.util.List<MailTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionMailTemplate createMailTemplate(MailTemplate mailtemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> createMailTemplates(java.util.List<MailTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionMailTemplate updateMailTemplate(MailTemplate mailtemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> updateMailTemplates(java.util.List<MailTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> getMailTemplatesByProperty(java.lang.String propertyName, java.lang.Object value) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> getMailTemplatesByProperty(java.lang.String propertyName, java.lang.Object value, net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.anodoc.query2.QueryResult executeQueryOnMailTemplates(net.anotheria.anodoc.query2.DocumentQuery query)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> getMailTemplatesByProperty(net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> getMailTemplatesByProperty(net.anotheria.util.sorter.SortType sortType, net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionint getMailTemplatesCount()
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> getMailTemplates(net.anotheria.util.slicer.Segment aSegment) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> getMailTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<MailTemplate> getMailTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.util.sorter.SortType aSortType, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid copyMultilingualAttributesInAllMailTemplates(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportMailTemplatesToXML(java.util.List<MailTemplate> listMailTemplates) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportMailTemplatesToXML(java.lang.String[] languages,
java.util.List<MailTemplate> listMailTemplates)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid fetchMailTemplate(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> getPdfTemplates() throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> getPdfTemplates(net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deletePdfTemplate(java.lang.String id)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deletePdfTemplate(PdfTemplate pdftemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deletePdfTemplates(java.util.List<PdfTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionPdfTemplate getPdfTemplate(java.lang.String id) throws ASResourceDataServiceException
ASResourceDataServiceExceptionPdfTemplate importPdfTemplate(PdfTemplate pdftemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> importPdfTemplates(java.util.List<PdfTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionPdfTemplate createPdfTemplate(PdfTemplate pdftemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> createPdfTemplates(java.util.List<PdfTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionPdfTemplate updatePdfTemplate(PdfTemplate pdftemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> updatePdfTemplates(java.util.List<PdfTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> getPdfTemplatesByProperty(java.lang.String propertyName, java.lang.Object value) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> getPdfTemplatesByProperty(java.lang.String propertyName, java.lang.Object value, net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.anodoc.query2.QueryResult executeQueryOnPdfTemplates(net.anotheria.anodoc.query2.DocumentQuery query)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> getPdfTemplatesByProperty(net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> getPdfTemplatesByProperty(net.anotheria.util.sorter.SortType sortType, net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionint getPdfTemplatesCount()
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> getPdfTemplates(net.anotheria.util.slicer.Segment aSegment) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> getPdfTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PdfTemplate> getPdfTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.util.sorter.SortType aSortType, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid copyMultilingualAttributesInAllPdfTemplates(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportPdfTemplatesToXML(java.util.List<PdfTemplate> listPdfTemplates) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportPdfTemplatesToXML(java.lang.String[] languages,
java.util.List<PdfTemplate> listPdfTemplates)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid fetchPdfTemplate(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> getPushNotificationTemplates() throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> getPushNotificationTemplates(net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deletePushNotificationTemplate(java.lang.String id)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deletePushNotificationTemplate(PushNotificationTemplate pushnotificationtemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deletePushNotificationTemplates(java.util.List<PushNotificationTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionPushNotificationTemplate getPushNotificationTemplate(java.lang.String id) throws ASResourceDataServiceException
ASResourceDataServiceExceptionPushNotificationTemplate importPushNotificationTemplate(PushNotificationTemplate pushnotificationtemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> importPushNotificationTemplates(java.util.List<PushNotificationTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionPushNotificationTemplate createPushNotificationTemplate(PushNotificationTemplate pushnotificationtemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> createPushNotificationTemplates(java.util.List<PushNotificationTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionPushNotificationTemplate updatePushNotificationTemplate(PushNotificationTemplate pushnotificationtemplate) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> updatePushNotificationTemplates(java.util.List<PushNotificationTemplate> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> getPushNotificationTemplatesByProperty(java.lang.String propertyName, java.lang.Object value) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> getPushNotificationTemplatesByProperty(java.lang.String propertyName, java.lang.Object value, net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.anodoc.query2.QueryResult executeQueryOnPushNotificationTemplates(net.anotheria.anodoc.query2.DocumentQuery query)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> getPushNotificationTemplatesByProperty(net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> getPushNotificationTemplatesByProperty(net.anotheria.util.sorter.SortType sortType, net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionint getPushNotificationTemplatesCount()
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> getPushNotificationTemplates(net.anotheria.util.slicer.Segment aSegment) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> getPushNotificationTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<PushNotificationTemplate> getPushNotificationTemplatesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.util.sorter.SortType aSortType, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid copyMultilingualAttributesInAllPushNotificationTemplates(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportPushNotificationTemplatesToXML(java.util.List<PushNotificationTemplate> listPushNotificationTemplates) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportPushNotificationTemplatesToXML(java.lang.String[] languages,
java.util.List<PushNotificationTemplate> listPushNotificationTemplates)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid fetchPushNotificationTemplate(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> getImages() throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> getImages(net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteImage(java.lang.String id)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteImage(Image image) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteImages(java.util.List<Image> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionImage getImage(java.lang.String id) throws ASResourceDataServiceException
ASResourceDataServiceExceptionImage importImage(Image image) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> importImages(java.util.List<Image> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionImage createImage(Image image) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> createImages(java.util.List<Image> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionImage updateImage(Image image) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> updateImages(java.util.List<Image> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> getImagesByProperty(java.lang.String propertyName, java.lang.Object value) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> getImagesByProperty(java.lang.String propertyName, java.lang.Object value, net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.anodoc.query2.QueryResult executeQueryOnImages(net.anotheria.anodoc.query2.DocumentQuery query)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> getImagesByProperty(net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> getImagesByProperty(net.anotheria.util.sorter.SortType sortType, net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionint getImagesCount()
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> getImages(net.anotheria.util.slicer.Segment aSegment) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> getImagesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<Image> getImagesByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.util.sorter.SortType aSortType, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid copyMultilingualAttributesInAllImages(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportImagesToXML(java.util.List<Image> listImages) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportImagesToXML(java.lang.String[] languages,
java.util.List<Image> listImages)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid fetchImage(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> getFileLinks() throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> getFileLinks(net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteFileLink(java.lang.String id)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteFileLink(FileLink filelink) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid deleteFileLinks(java.util.List<FileLink> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionFileLink getFileLink(java.lang.String id) throws ASResourceDataServiceException
ASResourceDataServiceExceptionFileLink importFileLink(FileLink filelink) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> importFileLinks(java.util.List<FileLink> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionFileLink createFileLink(FileLink filelink) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> createFileLinks(java.util.List<FileLink> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionFileLink updateFileLink(FileLink filelink) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> updateFileLinks(java.util.List<FileLink> list) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> getFileLinksByProperty(java.lang.String propertyName, java.lang.Object value) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> getFileLinksByProperty(java.lang.String propertyName, java.lang.Object value, net.anotheria.util.sorter.SortType sortType) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.anodoc.query2.QueryResult executeQueryOnFileLinks(net.anotheria.anodoc.query2.DocumentQuery query)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> getFileLinksByProperty(net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> getFileLinksByProperty(net.anotheria.util.sorter.SortType sortType, net.anotheria.anodoc.query2.QueryProperty... property) throws ASResourceDataServiceException
ASResourceDataServiceExceptionint getFileLinksCount()
throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> getFileLinks(net.anotheria.util.slicer.Segment aSegment) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> getFileLinksByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionjava.util.List<FileLink> getFileLinksByProperty(net.anotheria.util.slicer.Segment aSegment, net.anotheria.util.sorter.SortType aSortType, net.anotheria.anodoc.query2.QueryProperty... aProperty) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportFileLinksToXML(java.util.List<FileLink> listFileLinks) throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportFileLinksToXML(java.lang.String[] languages,
java.util.List<FileLink> listFileLinks)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid fetchFileLink(java.lang.String id,
java.util.Set<java.lang.String> addedDocuments,
org.codehaus.jettison.json.JSONArray data)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid executeParsingForDocument(DocumentName documentName, org.codehaus.jettison.json.JSONObject data) throws ASResourceDataServiceException
ASResourceDataServiceExceptionvoid copyMultilingualAttributesInAllObjects(java.lang.String sourceLanguage,
java.lang.String targetLanguage)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.anodoc.query2.QueryResult executeQueryOnAllObjects(net.anotheria.anodoc.query2.DocumentQuery query)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportToXML()
throws ASResourceDataServiceException
ASResourceDataServiceExceptionnet.anotheria.util.xml.XMLNode exportToXML(java.lang.String[] languages)
throws ASResourceDataServiceException
ASResourceDataServiceExceptionCopyright © 2012-2023 anotheria.net. All Rights Reserved.