com.filenet.api.admin
Interface CmContentConversionAction
-
- All Superinterfaces:
- Action, EngineObject, IndependentlyPersistableObject, IndependentObject, Replicable, RepositoryObject, java.io.Serializable, Subscribable
public interface CmContentConversionAction extends RepositoryObject, Action
This class is not supported.Defines a content conversion handler.
Metadata
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description voidchangeClass(java.lang.String className)Changes the class of a Content Engine object.CmConversionSettingsClassDefinitionget_CmOutputConversion()Returns the value of the CmOutputConversion property.StringListget_CmSupportedInputContentTypes()Returns the value of the CmSupportedInputContentTypes property.StringListget_CmUnsupportedInputContentTypes()Returns the value of the CmUnsupportedInputContentTypes property.java.lang.Booleanget_IsEnabled()Returns the value of the IsEnabled property.java.lang.Integerget_Priority()Returns the value of the Priority property.voidset_CmOutputConversion(CmConversionSettingsClassDefinition value)Sets the value of the CmOutputConversion property.voidset_CmSupportedInputContentTypes(StringList value)Sets the value of the CmSupportedInputContentTypes property.voidset_CmUnsupportedInputContentTypes(StringList value)Sets the value of the CmUnsupportedInputContentTypes property.voidset_IsEnabled(java.lang.Boolean value)Sets the value of the IsEnabled property.voidset_Priority(java.lang.Integer value)Sets the value of the Priority property.-
Methods inherited from interface com.filenet.api.events.Action
get_ActiveMarkings, get_AuditedEvents, get_CodeModule, get_Creator, get_DateCreated, get_DateLastModified, get_DescriptiveText, get_DisplayName, get_Id, get_LastModifier, get_Name, get_Owner, get_Permissions, get_ProgId, get_ScriptText, set_CodeModule, set_Creator, set_DateCreated, set_DateLastModified, set_DescriptiveText, set_DisplayName, set_LastModifier, set_Owner, set_Permissions, set_ProgId, set_ScriptText
-
Methods inherited from interface com.filenet.api.core.RepositoryObject
getObjectStore
-
Methods inherited from interface com.filenet.api.replication.Replicable
get_ExternalReplicaIdentities, get_ReplicationGroup, set_ExternalReplicaIdentities, set_ReplicationGroup
-
Methods inherited from interface com.filenet.api.core.Subscribable
raiseEvent
-
Methods inherited from interface com.filenet.api.core.IndependentlyPersistableObject
addPendingAction, clearPendingActions, delete, getAccessAllowed, getPendingActions, getUpdateSequenceNumber, isCurrent, save, save, setUpdateSequenceNumber
-
Methods inherited from interface com.filenet.api.core.IndependentObject
fetchProperties, fetchProperties, fetchProperty, fetchProperty, getObjectReference, refresh, refresh, refresh
-
Methods inherited from interface com.filenet.api.core.EngineObject
get_ClassDescription, getClassName, getConnection, getProperties, getSuperClasses
-
-
-
-
Method Detail
-
get_IsEnabled
java.lang.Boolean get_IsEnabled()
Returns the value of the IsEnabled property. For more information, see IsEnabled Property.
-
set_IsEnabled
void set_IsEnabled(java.lang.Boolean value)
Sets the value of the IsEnabled property. For more information, see IsEnabled Property.
-
get_CmOutputConversion
CmConversionSettingsClassDefinition get_CmOutputConversion()
Returns the value of the CmOutputConversion property. For more information, see CmOutputConversion Property.
-
set_CmOutputConversion
void set_CmOutputConversion(CmConversionSettingsClassDefinition value)
Sets the value of the CmOutputConversion property. For more information, see CmOutputConversion Property.
-
get_CmSupportedInputContentTypes
StringList get_CmSupportedInputContentTypes()
Returns the value of the CmSupportedInputContentTypes property. For more information, see CmSupportedInputContentTypes Property.
-
set_CmSupportedInputContentTypes
void set_CmSupportedInputContentTypes(StringList value)
Sets the value of the CmSupportedInputContentTypes property. For more information, see CmSupportedInputContentTypes Property.
-
get_CmUnsupportedInputContentTypes
StringList get_CmUnsupportedInputContentTypes()
Returns the value of the CmUnsupportedInputContentTypes property. For more information, see CmUnsupportedInputContentTypes Property.
-
set_CmUnsupportedInputContentTypes
void set_CmUnsupportedInputContentTypes(StringList value)
Sets the value of the CmUnsupportedInputContentTypes property. For more information, see CmUnsupportedInputContentTypes Property.
-
changeClass
void changeClass(java.lang.String className)
Changes the class of a Content Engine object. The new class must already exist and both it and the original class must be subclasses of the same base class. ThechangeClassmethod does not modify the security for an object, even if the object's current security is derived from the default security for its source class. For the object's user-defined properties, the following rules apply:- Any user-defined properties that exist in the new class but not in the original class are set to the
default value defined by the new class (or to
nullif there is no default defined). - Any user-defined properties that exist in both the original and the new class that are writable and
have the same value (including
null) as the default value defined in the original class will be set to the default value defined by the new class. However, any user-defined property that has had its value modified from the default value will retain that modified value in the new class. - Any user-defined properties whose definitions exist in the original class but not in the new class will no longer exist on the object when its class is changed.
- Property constraints for the new class (for example, required values, choice lists, ranges) are not enforced.
When the class of a document object is changed, the default document lifecycle policy of the new class will only be applied to the document object's DocumentLifecyclePolicy property if both of the following scenarios occur:
- The document has no current lifecycle policy.
- The document is either a reservation object, or is the current version object and is not reserved.
Changing the document class of a document object has no effect on the storage location of the document's content. For more information, see the Document Storage topic in the "Document Concepts" section of the Content Engine Java and .NET API Developer's Guide.
- Parameters:
className- AStringspecifying the symbolic name,ClassNamesconstant, ID, orGUIDConstantsconstant of the class to which this object is to be changed.- Throws:
E_NULL_OR_INVALID_PARAM_VALUE- ifclassNameisnullor has a length of zero.
- Any user-defined properties that exist in the new class but not in the original class are set to the
default value defined by the new class (or to
-
get_Priority
java.lang.Integer get_Priority()
Returns the value of the Priority property.
-
set_Priority
void set_Priority(java.lang.Integer value)
Sets the value of the Priority property. Specifies priority of this conversion handler when multiple conversion handlers are configured that can support same conversion
-
-