1 package net.sf.exorcist.midgard;
2
3 import javax.jcr.nodetype.ItemDefinition;
4 import javax.jcr.nodetype.NodeType;
5
6 public class MidgardItemDefinition implements ItemDefinition {
7
8 public NodeType getDeclaringNodeType() {
9
10 return null;
11 }
12
13 public String getName() {
14
15 return null;
16 }
17
18 public boolean isAutoCreated() {
19
20 return false;
21 }
22
23 public boolean isMandatory() {
24
25 return false;
26 }
27
28 public int getOnParentVersion() {
29
30 return 0;
31 }
32
33 public boolean isProtected() {
34
35 return false;
36 }
37
38 }