@Produces({ XML, JSON })
@Path("children")
public ManagedItemCollection<ItemBase> listChildren(@QueryParam("deleted") boolean includeDeleted)
throws OpsException, RepositoryException {
boolean fetchTags = true;
ItemBase item = getManagedItem(fetchTags);
Tag parentTag = Tag.buildParentTag(item.getKey());
Filter filter = TagFilter.byTag(parentTag);
if (!includeDeleted) {
filter = StateFilter.excludeDeleted(filter);
}