Uses of Class
com.uwyn.rife.cmf.dam.exceptions.ContentManagerException

Packages that use ContentManagerException
com.uwyn.rife.cmf.dam Provides classes and interfaces for the database access management of the content management framework. 
com.uwyn.rife.cmf.dam.contentmanagers Provides managers classes for content information support. 
com.uwyn.rife.cmf.dam.contentmanagers.exceptions Provides exception classes for the content information managers. 
com.uwyn.rife.cmf.dam.contentstores Provides managers classes for content data support. 
com.uwyn.rife.cmf.dam.contentstores.exceptions Provides exception classes for the content data managers. 
com.uwyn.rife.cmf.dam.exceptions Provides exception classes for the database access management of the content management framework. 
com.uwyn.rife.cmf.loader Provides classes and interfaces that delegate the loading of raw content data to back-end libraries. 
com.uwyn.rife.cmf.loader.image Provides classes that delegate the loading of raw content data to image back-end libraries. 
com.uwyn.rife.cmf.loader.xhtml Provides classes that delegate the loading of raw content data to xhtml back-end libraries. 
com.uwyn.rife.cmf.transform Provides classes and interfaces that are able to transform typed content data. 
 

Uses of ContentManagerException in com.uwyn.rife.cmf.dam
 

Methods in com.uwyn.rife.cmf.dam that throw ContentManagerException
 boolean ContentManager.containsRepository(String name)
          Checks if the content manager contains a certain repository.
 boolean ContentManager.createRepository(String name)
          Creates a new repository.
 boolean ContentManager.deleteContent(String location)
          Delete the content at a certain location.
 boolean ContentStore.deleteContentData(int id)
          Deletes the content data for a certain content id.
 String ContentStore.getContentForHtml(int id, ContentInfo info, ElementSupport element, String serveContentExitName)
          Retrieves a content data representation for use in html.
 String ContentQueryManager.getContentForHtml(int objectId, String propertyName, Element element, String serveContentExitName)
          Retrieves a content data representation for use in html.
 String ContentManager.getContentForHtml(String location, ElementSupport element, String serveContentExitName)
          Retrieves a content representation for use in html.
 String ContentQueryManager.getContentForHtml(T bean, String propertyName, Element element, String serveContentExitName)
          Retrieves a content data representation for use in html.
 ContentInfo ContentManager.getContentInfo(String location)
          Retrieves the content info from a certain location.
 int ContentStore.getSize(int id)
          Retrieves the size of the content data for a certain content id.
 boolean ContentStore.hasContentData(int id)
          Checks whether content data is available for a certain content id.
 boolean ContentManager.hasContentData(String location)
          Checks whether content data is available at a certain location.
 boolean ContentStore.install()
          Installs a content store.
 boolean ContentManager.install()
          Installs a content manager.
 boolean ContentStore.remove()
          Removes a content store.
 boolean ContentManager.remove()
          Removes a content manager.
 void ContentStore.serveContentData(ElementSupport element, int id)
          Serves content data for a certain content id through the provided element.
 void ContentManager.serveContentData(ElementSupport element, String location)
          Serves content data from a certain location through the provided element.
 boolean ContentManager.storeContent(String location, Content content, ContentTransformer transformer)
          Store content at a certain location.
 boolean ContentStore.storeContentData(int id, Content content, ContentTransformer transformer)
          Stores the content data for a certain content id.
<ResultType>
ResultType
ContentStore.useContentData(int id, ContentDataUser user)
          Use the data of a certain content id.
<ResultType>
ResultType
ContentManager.useContentData(String location, ContentDataUser user)
          Use the data of content at a certain location.
 

Uses of ContentManagerException in com.uwyn.rife.cmf.dam.contentmanagers
 

Methods in com.uwyn.rife.cmf.dam.contentmanagers that throw ContentManagerException
protected  boolean DatabaseContent._containsRepository(Select containsContentRepository, String name)
           
protected  boolean DatabaseContent._createRepository(SequenceValue getContentRepositoryId, Insert storeContentRepository, String name)
           
protected  boolean DatabaseContent._deleteContent(Select getContentInfo, Delete deleteContentInfo, Delete deleteContentAttributes, Delete deleteContentProperties, String location)
           
protected  String DatabaseContent._getContentForHtml(String location, ElementSupport element, String serveContentExitName)
           
protected  DatabaseContentInfo DatabaseContent._getContentInfo(Select getContentInfo, Select getContentAttributes, Select getContentProperties, String location)
           
protected  boolean DatabaseContent._hasContentData(Select retrieveContent, String location)
           
protected  boolean DatabaseContent._install(CreateSequence createSequenceContentRepository, CreateSequence createSequenceContentInfo, CreateTable createTableContentRepository, CreateTable createTableContentInfo, CreateTable createTableContentAttribute, CreateTable createTableContentProperty)
           
protected  boolean DatabaseContent._remove(DropSequence dropSequenceContentRepository, DropSequence dropSequenceContentInfo, DropTable dropTableContentRepository, DropTable dropTableContentInfo, DropTable dropTableContentAttribute, DropTable dropTableContentProperty)
           
protected  void DatabaseContent._serveContentData(ElementSupport element, String location)
           
protected  boolean DatabaseContent._storeContent(SequenceValue getContentId, Select getContentRepositoryId, Insert storeContentInfo, Insert storeContentAttribute, Insert storeContentProperty, String location, Content content, ContentTransformer transformer)
           
protected
<ResultType>
ResultType
DatabaseContent._useContentData(Select retrieveContent, String location, ContentDataUser user)
           
abstract  DatabaseContentInfo DatabaseContent.getContentInfo(String location)
           
 

Uses of ContentManagerException in com.uwyn.rife.cmf.dam.contentmanagers.exceptions
 

Subclasses of ContentManagerException in com.uwyn.rife.cmf.dam.contentmanagers.exceptions
 class InstallContentErrorException
           
 class RemoveContentErrorException
           
 class UnknownContentRepositoryException
           
 class UnsupportedMimeTypeException
           
 

Uses of ContentManagerException in com.uwyn.rife.cmf.dam.contentstores
 

Methods in com.uwyn.rife.cmf.dam.contentstores that throw ContentManagerException
protected  boolean DatabaseRawStore._deleteContentData(Delete deleteContentInfo, Delete deleteContentChunk, int id)
           
protected  boolean DatabaseContentStore._deleteContentData(Delete deleteContentData, int id)
           
protected  int DatabaseRawStore._getSize(Select retrieveSize, int id)
           
protected  int DatabaseContentStore._getSize(Select retrieveSize, int id)
           
protected  boolean DatabaseRawStore._hasContentData(Select hasContentData, int id)
           
protected  boolean DatabaseContentStore._hasContentData(Select hasContentData, int id)
           
protected  boolean DatabaseContentStore._install(CreateTable createTableContentStore)
           
protected  boolean DatabaseRawStore._install(CreateTable createTableContentInfo, CreateTable createTableContentChunk)
           
protected  boolean DatabaseContentStore._remove(DropTable dropTableContentStore)
           
protected  boolean DatabaseRawStore._remove(DropTable dropTableContentInfo, DropTable dropTableContentChunk)
           
protected  void DatabaseRawStore._serveContentData(Select retrieveContentChunks, ElementSupport element, int id)
           
protected  void DatabaseContentStore._serveContentData(Select retrieveContent, ElementSupport element, int id)
           
protected  boolean DatabaseRawStore._storeContentData(Insert storeContentInfo, Insert storeContentChunk, int id, Content content, ContentTransformer transformer)
           
protected  boolean DatabaseTextStore._storeContentData(Insert storeContent, int id, Content content, ContentTransformer transformer)
           
protected  boolean DatabaseImageStore._storeContentData(Insert storeContent, int id, Content content, ContentTransformer transformer)
           
protected
<ResultType>
ResultType
DatabaseTextStore._useContentData(Select retrieveContent, int id, ContentDataUser user)
           
protected
<ResultType>
ResultType
DatabaseRawStore._useContentData(Select retrieveContentChunks, int id, ContentDataUser user)
           
protected
<ResultType>
ResultType
DatabaseImageStore._useContentData(Select retrieveContent, int id, ContentDataUser user)
           
 String DatabaseTextStore.getContentForHtml(int id, ContentInfo info, ElementSupport element, String serveContentExitName)
           
 String DatabaseRawStore.getContentForHtml(int id, ContentInfo info, ElementSupport element, String serveContentExitName)
           
 String DatabaseImageStore.getContentForHtml(int id, ContentInfo info, ElementSupport element, String serveContentExitName)
           
protected  boolean DatabaseTextStore.storeContent(Insert storeContent, int id, String data)
           
protected  boolean DatabaseImageStore.storeTypedData(Insert storeContent, int id, byte[] data)
           
 

Uses of ContentManagerException in com.uwyn.rife.cmf.dam.contentstores.exceptions
 

Subclasses of ContentManagerException in com.uwyn.rife.cmf.dam.contentstores.exceptions
 class DeleteContentDataErrorException
           
 class HasContentDataErrorException
           
 class InstallContentStoreErrorException
           
 class RemoveContentStoreErrorException
           
 class RetrieveSizeErrorException
           
 class StoreContentDataErrorException
           
 class UseContentDataErrorException
           
 

Uses of ContentManagerException in com.uwyn.rife.cmf.dam.exceptions
 

Subclasses of ContentManagerException in com.uwyn.rife.cmf.dam.exceptions
 class ExpectedMimeTypeConstraintException
           
 class ExpectedOrdinalConstraintException
           
 class InvalidOrdinalRestrictionTypeException
           
 class InvalidOrdinalTypeException
           
 class MissingIdentifierValueException
           
 class OrdinalRestrictionCantBeNullException
           
 class UnknownConstrainedPropertyException
           
 class UnknownOrdinalException
           
 class UnknownOrdinalRestrictionException
           
 class WrongConstrainedPropertyVariantException
           
 

Uses of ContentManagerException in com.uwyn.rife.cmf.loader
 

Methods in com.uwyn.rife.cmf.loader that throw ContentManagerException
 String XhtmlContentLoaderBackend.load(Object data, boolean fragment, Set<String> errors)
           
 Image ImageContentLoaderBackend.load(Object data, boolean fragment, Set<String> errors)
           
 InternalType ContentLoader.load(Object data, boolean fragment, Set<String> errors)
          Loads raw data and returns the internal type after successful loading and handling.
protected abstract  Image ImageContentLoaderBackend.loadFromBytes(byte[] data, Set<String> errors)
          Loads the data from a byte array.
protected abstract  String XhtmlContentLoaderBackend.loadFromString(String data, boolean fragment, Set<String> errors)
          Loads the data from a string
 

Uses of ContentManagerException in com.uwyn.rife.cmf.loader.image
 

Methods in com.uwyn.rife.cmf.loader.image that throw ContentManagerException
 Image JimiLoader.loadFromBytes(byte[] data, Set<String> errors)
           
 Image JaiLoader.loadFromBytes(byte[] data, Set<String> errors)
           
 Image JMagickLoader.loadFromBytes(byte[] data, Set<String> errors)
           
 Image ImageroReaderLoader.loadFromBytes(byte[] data, Set<String> errors)
           
 Image ImageJLoader.loadFromBytes(byte[] data, Set<String> errors)
           
 Image ImageIOLoader.loadFromBytes(byte[] data, Set<String> errors)
           
 

Uses of ContentManagerException in com.uwyn.rife.cmf.loader.xhtml
 

Methods in com.uwyn.rife.cmf.loader.xhtml that throw ContentManagerException
 String Jdk14Loader.loadFromString(String data, boolean fragment, Set<String> errors)
           
 

Uses of ContentManagerException in com.uwyn.rife.cmf.transform
 

Methods in com.uwyn.rife.cmf.transform that throw ContentManagerException
 Image ImageContentTransformer.transform(Image data, Map<String,String> attributes)
          Transforms the image content data and returns the transformed data as an Image.
 InputStream RawContentTransformer.transform(InputStream data, Map<String,String> attributes)
          Transforms the raw content data and returns the transformed data as an array of bytes.
 InternalType ContentTransformer.transform(InternalType data, Map<String,String> attributes)
          Transforms the content data and returns the transformed data in the same data type as the original.
 String TextContentTransformer.transform(String data, Map<String,String> attributes)
          Transforms the text content data and returns the transformed data as text.
 



Copyright © 2001-2007 Uwyn sprl/bvba. All Rights Reserved.