Package org.apache.jackrabbit.vault.util
Class DocViewNode
- java.lang.Object
-
- org.apache.jackrabbit.vault.util.DocViewNode
-
@Deprecated public class DocViewNode extends Object
Deprecated.UseDocViewNode2
instead.Helper class that represents a JCR node abstraction encapsulating multipleproperties
.
-
-
Field Summary
Fields Modifier and Type Field Description @NotNull String
label
Deprecated.usually equal toname
except when this node has a same name sibling, in that case label has format<name>[index]
, https://docs.adobe.com/content/docs/en/spec/jcr/2.0/22_Same-Name_Siblings.html#22.2%20Addressing%20Same-Name%20Siblings%20by%20Path@Nullable String[]
mixins
Deprecated.@NotNull String
name
Deprecated.@Nullable String
primary
Deprecated.@NotNull Map<String,DocViewProperty>
props
Deprecated.@Nullable String
uuid
Deprecated.
-
Constructor Summary
Constructors Constructor Description DocViewNode(@NotNull String name, @NotNull String label, String uuid, Map<String,DocViewProperty> props, String[] mixins, String primary)
Deprecated.DocViewNode(@NotNull String name, @NotNull String label, Attributes attributes)
Deprecated.DocViewNode(@NotNull String name, @NotNull String label, Attributes attributes, NamePathResolver npResolver)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(Object obj)
Deprecated.static DocViewNode
fromDocViewNode2(DocViewNode2 node)
Deprecated.String
getValue(String name)
Deprecated.String[]
getValues(String name)
Deprecated.int
hashCode()
Deprecated.String
toString()
Deprecated.
-
-
-
Field Detail
-
name
@NotNull public final @NotNull String name
Deprecated.
-
label
@NotNull public final @NotNull String label
Deprecated.usually equal toname
except when this node has a same name sibling, in that case label has format<name>[index]
, https://docs.adobe.com/content/docs/en/spec/jcr/2.0/22_Same-Name_Siblings.html#22.2%20Addressing%20Same-Name%20Siblings%20by%20Path
-
props
@NotNull public final @NotNull Map<String,DocViewProperty> props
Deprecated.
-
uuid
@Nullable public @Nullable String uuid
Deprecated.
-
mixins
@Nullable public final @Nullable String[] mixins
Deprecated.
-
primary
@Nullable public final @Nullable String primary
Deprecated.
-
-
Constructor Detail
-
DocViewNode
public DocViewNode(@NotNull @NotNull String name, @NotNull @NotNull String label, String uuid, Map<String,DocViewProperty> props, String[] mixins, String primary)
Deprecated.
-
DocViewNode
@Deprecated public DocViewNode(@NotNull @NotNull String name, @NotNull @NotNull String label, Attributes attributes, NamePathResolver npResolver) throws NamespaceException
Deprecated.- Throws:
NamespaceException
-
DocViewNode
public DocViewNode(@NotNull @NotNull String name, @NotNull @NotNull String label, Attributes attributes) throws NamespaceException
Deprecated.- Throws:
NamespaceException
-
-
Method Detail
-
fromDocViewNode2
public static DocViewNode fromDocViewNode2(DocViewNode2 node)
Deprecated.
-
-