View Javadoc

1   package net.sf.exorcist.midgard;
2   
3   import javax.jcr.Value;
4   import javax.jcr.nodetype.NodeDefinition;
5   import javax.jcr.nodetype.NodeType;
6   import javax.jcr.nodetype.PropertyDefinition;
7   
8   public class MidgardNodeType implements NodeType {
9   
10      /* (non-Javadoc)
11       * @see javax.jcr.nodetype.NodeType#getName()
12       */
13      public String getName() {
14          // TODO Auto-generated method stub
15          return null;
16      }
17  
18      /* (non-Javadoc)
19       * @see javax.jcr.nodetype.NodeType#isMixin()
20       */
21      public boolean isMixin() {
22          // TODO Auto-generated method stub
23          return false;
24      }
25  
26      /* (non-Javadoc)
27       * @see javax.jcr.nodetype.NodeType#hasOrderableChildNodes()
28       */
29      public boolean hasOrderableChildNodes() {
30          // TODO Auto-generated method stub
31          return false;
32      }
33  
34      /* (non-Javadoc)
35       * @see javax.jcr.nodetype.NodeType#getPrimaryItemName()
36       */
37      public String getPrimaryItemName() {
38          // TODO Auto-generated method stub
39          return null;
40      }
41  
42      /* (non-Javadoc)
43       * @see javax.jcr.nodetype.NodeType#getSupertypes()
44       */
45      public NodeType[] getSupertypes() {
46          // TODO Auto-generated method stub
47          return null;
48      }
49  
50      /* (non-Javadoc)
51       * @see javax.jcr.nodetype.NodeType#getDeclaredSupertypes()
52       */
53      public NodeType[] getDeclaredSupertypes() {
54          // TODO Auto-generated method stub
55          return null;
56      }
57  
58      /* (non-Javadoc)
59       * @see javax.jcr.nodetype.NodeType#isNodeType(java.lang.String)
60       */
61      public boolean isNodeType(String arg0) {
62          // TODO Auto-generated method stub
63          return false;
64      }
65  
66      /* (non-Javadoc)
67       * @see javax.jcr.nodetype.NodeType#getPropertyDefinitions()
68       */
69      public PropertyDefinition[] getPropertyDefinitions() {
70          // TODO Auto-generated method stub
71          return null;
72      }
73  
74      /* (non-Javadoc)
75       * @see javax.jcr.nodetype.NodeType#getDeclaredPropertyDefinitions()
76       */
77      public PropertyDefinition[] getDeclaredPropertyDefinitions() {
78          // TODO Auto-generated method stub
79          return null;
80      }
81  
82      /* (non-Javadoc)
83       * @see javax.jcr.nodetype.NodeType#getChildNodeDefinitions()
84       */
85      public NodeDefinition[] getChildNodeDefinitions() {
86          // TODO Auto-generated method stub
87          return null;
88      }
89  
90      /* (non-Javadoc)
91       * @see javax.jcr.nodetype.NodeType#getDeclaredChildNodeDefinitions()
92       */
93      public NodeDefinition[] getDeclaredChildNodeDefinitions() {
94          // TODO Auto-generated method stub
95          return null;
96      }
97  
98      /* (non-Javadoc)
99       * @see javax.jcr.nodetype.NodeType#canSetProperty(java.lang.String, javax.jcr.Value)
100      */
101     public boolean canSetProperty(String arg0, Value arg1) {
102         // TODO Auto-generated method stub
103         return false;
104     }
105 
106     /* (non-Javadoc)
107      * @see javax.jcr.nodetype.NodeType#canSetProperty(java.lang.String, javax.jcr.Value[])
108      */
109     public boolean canSetProperty(String arg0, Value[] arg1) {
110         // TODO Auto-generated method stub
111         return false;
112     }
113 
114     /* (non-Javadoc)
115      * @see javax.jcr.nodetype.NodeType#canAddChildNode(java.lang.String)
116      */
117     public boolean canAddChildNode(String arg0) {
118         // TODO Auto-generated method stub
119         return false;
120     }
121 
122     /* (non-Javadoc)
123      * @see javax.jcr.nodetype.NodeType#canAddChildNode(java.lang.String, java.lang.String)
124      */
125     public boolean canAddChildNode(String arg0, String arg1) {
126         // TODO Auto-generated method stub
127         return false;
128     }
129 
130     /* (non-Javadoc)
131      * @see javax.jcr.nodetype.NodeType#canRemoveItem(java.lang.String)
132      */
133     public boolean canRemoveItem(String arg0) {
134         // TODO Auto-generated method stub
135         return false;
136     }
137 
138 }