View Javadoc

1   /**
2    * This file Copyright (c) 2003-2011 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.cms.core;
35  
36  import java.io.Serializable;
37  
38  /**
39   * The Magnolia equivalent to {@link NodeType}.
40   *
41   * @version $Id: ItemType.java 49513 2011-09-26 10:59:16Z tmattsson $
42   *
43   * @deprecated since 4.5 - use {@link MgnlNodeType}}.
44   */
45  public final class ItemType implements Serializable {
46  
47      /**
48       * Node type: base.
49       */
50      public static final String NT_BASE = "nt:base";
51  
52      /**
53       * Node type: unstructured.
54       */
55      public static final String NT_UNSTRUCTURED = "nt:unstructured";
56  
57      /**
58       * Node type: hierarchyNode.
59       */
60      public static final String NT_HIERARCHY = "nt:hierarchyNode";
61  
62      /**
63       * Node type: folder.
64       */
65      public static final String NT_FOLDER = "mgnl:folder";
66  
67      /**
68       * Node type: base.
69       */
70      public static final String NT_FILE = "nt:file";
71  
72      /**
73       * Node type: resource.
74       */
75      public static final String NT_RESOURCE = "mgnl:resource";
76  
77      /**
78       * Node type: metadata.
79       */
80      public static final String NT_METADATA = "mgnl:metaData";
81  
82      /**
83       * "wfe:workItem".
84       */
85      public static final ItemType WORKITEM = new ItemType("workItem");
86  
87      /**
88       * "wfe:expression".
89       */
90      public static final ItemType EXPRESSION = new ItemType("expression");
91  
92      /**
93       * Mixin: node has access control.
94       */
95      public static final String MIX_ACCESSCONTROLLABLE = "mix:accessControllable";
96  
97      /**
98       * Mixin: node can be referenced.
99       */
100     public static final String MIX_REFERENCEABLE = "mix:referenceable";
101 
102     /**
103      * Mixin: node can be versioned.
104      */
105     public static final String MIX_VERSIONABLE = "mix:versionable";
106 
107     public static final String MIX_LOCKABLE = "mix:lockable";
108 
109     public static final String DELETED_NODE_MIXIN = "mgnl:deleted";
110 
111     /**
112      * Magnolia content.
113      * @deprecated use ItemType.CONTENT
114      */
115     @Deprecated
116     public static final String NT_CONTENT = "mgnl:content";
117 
118     public static final String MGNL_NODE_DATA = "mgnl:nodeData";
119 
120     public static final String NT_FROZENNODE = "nt:frozenNode";
121 
122     public static final String JCR_FROZENNODE = "jcr:frozenNode";
123 
124     public static final String JCR_FROZEN_PRIMARY_TYPE = "jcr:frozenPrimaryType";
125 
126     public static final String JCR_PRIMARY_TYPE = "jcr:primaryType";
127 
128     public static final String JCR_DATA = "jcr:data";
129 
130     /**
131      * Magnolia content node.
132      * @deprecated use ItemType.CONTENTNODE
133      */
134     @Deprecated
135     public static final String NT_CONTENTNODE = "mgnl:contentNode";
136 
137     public static final ItemType CONTENT = new ItemType("mgnl:content");
138 
139     public static final ItemType CONTENTNODE = new ItemType("mgnl:contentNode");
140 
141     public static final ItemType USER = new ItemType("mgnl:user");
142 
143     public static final ItemType ROLE = new ItemType("mgnl:role");
144 
145     public static final ItemType GROUP = new ItemType("mgnl:group");
146 
147     public static final ItemType SYSTEM = new ItemType("mgnl:reserve");
148 
149     public static final ItemType JCR_CONTENT = new ItemType("jcr:content");
150 
151     public static final ItemType FOLDER = new ItemType(NT_FOLDER);
152 
153     public static final ItemType PAGE = new ItemType(MgnlNodeType.NT_PAGE);
154     public static final ItemType AREA = new ItemType(MgnlNodeType.NT_AREA);
155     public static final ItemType COMPONENT = new ItemType(MgnlNodeType.NT_COMPONENT);
156 
157     /**
158      * Stable serialVersionUID.
159      */
160     private static final long serialVersionUID = 222L;
161 
162     /**
163      * Node name.
164      */
165     private final String systemName;
166 
167     /**
168      * Ctor.
169      * @param systemName jcr system name
170      */
171     public ItemType(String systemName) {
172         this.systemName = systemName;
173     }
174 
175     /**
176      * Getter for <code>name</code>.
177      * @return Returns the name.
178      */
179     public String getSystemName() {
180         return this.systemName;
181     }
182 
183     /**
184      * @see java.lang.Object#equals(Object)
185      */
186     @Override
187     public boolean equals(Object object) {
188         if (!(object instanceof ItemType)) {
189             return false;
190         }
191         ItemType rhs = (ItemType) object;
192         return this.systemName.equals(rhs.systemName);
193     }
194 
195     /**
196      * @see java.lang.Object#toString()
197      */
198     @Override
199     public String toString() {
200         return this.systemName;
201     }
202 
203     /**
204      * @see java.lang.Object#hashCode()
205      */
206     @Override
207     public int hashCode() {
208         return this.systemName.hashCode();
209     }
210 
211 }