ChangeClassAction Element

System.Object

ActionType

ChangeClassAction

 

Client Declaration

Represents a pending action for changing 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. For more information, see the Java™ API ChangeClass class and changeClass method topics in the IBM® FileNet® P8 documentation.

 

Element Structure

Attributes

 

Code Example

ChangeClassAction objChangeClass = ChangeClassAction();
objChangeClass.newClass = "NewDocClass";

 

XML Schema

<xsd:complexType name="ChangeClassAction">
   <xsd:complexContent>
      <xsd:extension base="ActionType">
         <xsd:attribute name="newClass" type="xsd:string" use="required"/>
      </xsd:extension>
   </xsd:complexContent>
</xsd:complexType>