org.apache.jackrabbit.spi.NodeInfo Maven / Gradle / Ivy
Show all versions of aem-sdk-api Show documentation
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jackrabbit.spi;
import java.util.Iterator;
/**
* The NodeInfo
provides the basic information required to build
* nodes making up the repository hierarchy.
*
* Note however, that the list of child nodes does not form part of a
* NodeInfo
. It is retrieved by calling
* {@link RepositoryService#getChildInfos(SessionInfo, NodeId)}. In case of
* {@link RepositoryService#getItemInfos(SessionInfo, ItemId) batch read} the
* child nodes might be part of the returned Iterator
.
*/
public interface NodeInfo extends ItemInfo {
/**
* Returns the NodeId
for the node that is based on this info
* object.
*
* @return identifier for the item that is based on this info object. the id
* can either be an absolute path or a uniqueID (+ relative path).
* @see RepositoryService#getNodeInfo(SessionInfo, NodeId)
*/
public NodeId getId();
/**
* Index of the node.
*
* @return the index.
*/
public int getIndex();
/**
* @return Name
representing the name of the primary nodetype.
*/
public Name getNodetype();
/**
* @return Array of Name
s representing the names of mixin nodetypes.
* This includes only explicitly assigned mixin nodetypes. It does not include
* mixin types inherited through the addition of supertypes to the primary
* type hierarchy. If there are no mixin node types assigned an empty
* array will be returned.
*/
public Name[] getMixins();
/**
* Return the {@link PropertyId Id}s of the properties that are referencing the
* node based on this info object.
*
* @return {@link PropertyId Id}s of the properties that are referencing the
* node based on this info object or an empty array if the node is not
* referenceable or no references exist.
* @see PropertyInfo#getId()
* @deprecated Use {@link RepositoryService#getReferences(SessionInfo, NodeId, Name, boolean)} instead.
*/
public PropertyId[] getReferences();
/**
* @return {@link PropertyId Id}s of children properties
* @see PropertyInfo#getId()
*/
public Iterator getPropertyIds();
/**
* Return all ChildInfo
s of the node represent by
* this info, an empty iterator if that node doesn't have any child nodes
* or null
if the implementation is not able or for some
* internal reasons not willing to compute the ChildInfo
* iterator. In the latter case the user of this API must call
* {@link RepositoryService#getChildInfos(SessionInfo, NodeId)} in order
* to determine the existence and identity of the child nodes.
*
* @return An iterator of ChildInfo
s or null
if
* the implementation is not able or willing to compute the set of
* ChildInfo
s (e.g. an implementation may choose to return
* null
if there is a huge amount of child nodes). In this
* case {@link RepositoryService#getChildInfos(SessionInfo, NodeId)} will
* be used to load the ChildInfo
s.
*/
public Iterator getChildInfos();
}