Class LinkedContentManagerFactory
java.lang.Object
com.aquima.interactions.portal.content.LinkedContentManagerFactory
- All Implemented Interfaces:
IContentManagerFactory
- Since:
- 9.3
- Author:
- m.mahabiersing
-
Method Summary
Modifier and TypeMethodDescriptioncreate
(IConnection connection) Create anIContentManager
for the given connectionstatic IContentManagerFactory
createFor
(IContentManagerFactory factory, IContentManagerFactory defaultFactory) This method returns aIContentManagerFactory
implementation that combines both factories passed to this method.
-
Method Details
-
createFor
public static IContentManagerFactory createFor(IContentManagerFactory factory, IContentManagerFactory defaultFactory) This method returns aIContentManagerFactory
implementation that combines both factories passed to this method.- Parameters:
factory
- The factory that should be used first (optional).defaultFactory
- The factory that should be used when the first did not supply an implementation (mandatory).- Returns:
- a factory implementation that combines both the factories that are passed to this method.
-
create
Description copied from interface:IContentManagerFactory
Create anIContentManager
for the given connection- Specified by:
create
in interfaceIContentManagerFactory
- Parameters:
connection
- The connection which will be used by the manager- Returns:
- An
IContentManager
implementation - Throws:
UnsupportedConnectionException
- If noIContentManager
is known for the given connection
-