KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > content > ContentObjectKey


1 package org.jahia.content;
2
3 /**
4  * <p>Title: Content object key abstract marker class</p>
5  * <p>Description: This class is only used to regroup keys as descendants of
6  * this class in order to test if a key is relative to a content object or
7  * not. This class should *never* be used directly.</p>
8  * <p>Copyright: Copyright (c) 2002</p>
9  * <p>Company: Jahia Ltd</p>
10  * @author Serge Huber
11  * @version 1.0
12  */

13
14 public abstract class ContentObjectKey extends ObjectKey {
15
16     /**
17      * Object constructor method.
18      * @param type a String specifying the object type. Normally this is used
19      * mostly by children of this class but could be used for some "hacks".
20      * @param IDInType the unique identifier within the type.
21      */

22     protected ContentObjectKey(String JavaDoc type,
23                                String JavaDoc IDInType) {
24         super(type, IDInType);
25     }
26
27 }
Popular Tags