Book Image

Alfresco Developer Guide

Book Image

Alfresco Developer Guide

Overview of this book

Table of Contents (17 chapters)
Alfresco Developer Guide
Credits
About the Author
About the Reviewers
Preface
Index

Step-by-Step: Finishing up the Model


Let's finish up the model by doing two things: First, the remaining departments need content types added to them. Second, there is an out of the box aspect that needs to be applied to all the content. It's called generalclassifiable. It allows content to be categorized. SomeCo wants all of its content to be classifiable as soon as it hits the repository. To make that happen, you need to define the aspect as mandatory. Because SomeCo wants it across the board, you can do it on the root type sc:doc, and have it trickle down to all of SomeCo's types.

To add the remaining departmental content types as well as make the generalclassifiable aspect mandatory, follow these steps:

  1. Edit the scModel.xml file.

  2. Add the the following types:

        <type name="sc:hrDoc">
         <title>Someco HR Document</title>
         <parent>sc:doc</parent>
        </type>
    
        <type name="sc:salesDoc">
         <title>Someco Sales Document</title&gt...