Class PropertyInfoImpl

java.lang.Object
org.apache.jackrabbit.spi.commons.ItemInfoImpl
org.apache.jackrabbit.spi.commons.PropertyInfoImpl
All Implemented Interfaces:
Serializable, ItemInfo, PropertyInfo

public class PropertyInfoImpl extends ItemInfoImpl implements PropertyInfo
PropertyInfoImpl implements a serializable PropertyInfo based on another property info.
See Also:
  • Constructor Details

    • PropertyInfoImpl

      public PropertyInfoImpl(NodeId parentId, Name name, Path path, PropertyId id, int type, boolean isMultiValued, QValue[] values)
      Deprecated.
      Use PropertyInfoImpl(Path, PropertyId, int, boolean, QValue[]) instead. The parentId is not used any more.
      Creates a new property info for the given parameters.
      Parameters:
      parentId - the parent id.
      name - the name of this property.
      path - the path to this property.
      id - the id of this property.
      type - the type of this property.
      isMultiValued - whether this property is multi-valued.
      values - the values.
    • PropertyInfoImpl

      public PropertyInfoImpl(Path path, PropertyId id, int type, boolean isMultiValued, QValue[] values)
      Creates a new property info for the given parameters.
      Parameters:
      path - the path to this property.
      id - the id of this property.
      type - the type of this property.
      isMultiValued - whether this property is multi-valued.
      values - the values.
  • Method Details