View Javadoc

1   /**
2    * This file Copyright (c) 2003-2013 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 info.magnolia.jcr.util.NodeTypes;
37  import org.apache.jackrabbit.JcrConstants;
38  
39  import java.io.Serializable;
40  
41  /**
42   * The Magnolia equivalent to {@link javax.jcr.nodetype.NodeType}.
43   *
44   * @deprecated since 4.5 - directly use {@link info.magnolia.jcr.util.NodeTypes} or {@link org.apache.jackrabbit.JcrConstants}.
45   */
46  public final class ItemType implements Serializable {
47  
48      /**
49       * Node type: base.
50       */
51      public static final String NT_BASE = JcrConstants.NT_BASE;
52  
53      /**
54       * Node type: unstructured.
55       */
56      public static final String NT_UNSTRUCTURED = JcrConstants.NT_UNSTRUCTURED;
57  
58      /**
59       * Node type: hierarchyNode.
60       */
61      public static final String NT_HIERARCHY = JcrConstants.NT_HIERARCHYNODE;
62  
63      /**
64       * Node type: folder.
65       */
66      public static final String NT_FOLDER = NodeTypes.Folder.NAME;
67  
68      /**
69       * Node type: base.
70       */
71      public static final String NT_FILE = JcrConstants.NT_FILE;
72  
73      /**
74       * Node type: resource.
75       */
76      public static final String NT_RESOURCE = NodeTypes.Resource.NAME;
77  
78      /**
79       * Node type: metadata.
80       */
81      public static final String NT_METADATA = NodeTypes.MetaData.NAME;
82  
83      /**
84       * "wfe:workItem".
85       */
86      public static final ItemType WORKITEM = new ItemType("workItem");
87  
88      /**
89       * "wfe:expression".
90       */
91      public static final ItemType EXPRESSION = new ItemType("expression");
92  
93      /**
94       * Mixin: node has access control.
95       */
96      public static final String MIX_ACCESSCONTROLLABLE = MgnlNodeType.MIX_ACCESSCONTROLLABLE;
97  
98      /**
99       * Mixin: node can be referenced.
100      */
101     public static final String MIX_REFERENCEABLE = JcrConstants.MIX_REFERENCEABLE;
102 
103     /**
104      * Mixin: node can be versioned.
105      */
106     public static final String MIX_VERSIONABLE = JcrConstants.MIX_VERSIONABLE;
107 
108     public static final String MIX_LOCKABLE = JcrConstants.MIX_LOCKABLE;
109 
110     public static final String DELETED_NODE_MIXIN = NodeTypes.Deleted.NAME;
111 
112     /**
113      * Magnolia content.
114      */
115     public static final String NT_CONTENT = NodeTypes.Content.NAME;
116 
117     public static final String MGNL_NODE_DATA = MgnlNodeType.MGNL_NODE_DATA;
118 
119     public static final String NT_FROZENNODE = JcrConstants.NT_FROZENNODE;
120 
121     public static final String JCR_FROZENNODE = JcrConstants.JCR_FROZENNODE;
122 
123     public static final String JCR_FROZEN_PRIMARY_TYPE = JcrConstants.JCR_FROZENPRIMARYTYPE;
124 
125     public static final String JCR_PRIMARY_TYPE = JcrConstants.JCR_PRIMARYTYPE;
126 
127     public static final String JCR_DATA = JcrConstants.JCR_DATA;
128 
129     /**
130      * Magnolia content node.
131      * @deprecated use ItemType.CONTENTNODE
132      */
133     @Deprecated
134     public static final String NT_CONTENTNODE = NodeTypes.ContentNode.NAME;
135 
136     public static final ItemType CONTENT = new ItemType(NT_CONTENT);
137 
138     public static final ItemType CONTENTNODE = new ItemType(NT_CONTENTNODE);
139 
140     public static final ItemType USER = new ItemType(NodeTypes.User.NAME);
141 
142     public static final ItemType ROLE = new ItemType(NodeTypes.Role.NAME);
143 
144     public static final ItemType GROUP = new ItemType(NodeTypes.Group.NAME);
145 
146     public static final ItemType SYSTEM = new ItemType(NodeTypes.System.NAME);
147 
148     public static final ItemType JCR_CONTENT = new ItemType(JcrConstants.JCR_CONTENT);
149 
150     public static final ItemType FOLDER = new ItemType(NT_FOLDER);
151 
152     public static final ItemType PAGE = new ItemType(NodeTypes.Page.NAME);
153     public static final ItemType AREA = new ItemType(NodeTypes.Area.NAME);
154     public static final ItemType COMPONENT = new ItemType(NodeTypes.Component.NAME);
155 
156     /**
157      * Stable serialVersionUID.
158      */
159     private static final long serialVersionUID = 222L;
160 
161     /**
162      * Node name.
163      */
164     private final String systemName;
165 
166     /**
167      * Ctor.
168      * @param systemName jcr system name
169      */
170     public ItemType(String systemName) {
171         this.systemName = systemName;
172     }
173 
174     /**
175      * Getter for <code>name</code>.
176      * @return Returns the name.
177      */
178     public String getSystemName() {
179         return this.systemName;
180     }
181 
182     /**
183      * @see java.lang.Object#equals(Object)
184      */
185     @Override
186     public boolean equals(Object object) {
187         if (!(object instanceof ItemType)) {
188             return false;
189         }
190         ItemType rhs = (ItemType) object;
191         return this.systemName.equals(rhs.systemName);
192     }
193 
194     /**
195      * @see java.lang.Object#toString()
196      */
197     @Override
198     public String toString() {
199         return this.systemName;
200     }
201 
202     /**
203      * @see java.lang.Object#hashCode()
204      */
205     @Override
206     public int hashCode() {
207         return this.systemName.hashCode();
208     }
209 
210 }