Copyright© 2008-2022 Sitevision AB, all rights reserved.
Package | Description |
---|---|
javax.jcr |
Provides interfaces and classes for the Content Repository for Java Technology.
|
javax.jcr.lock |
Provides interfaces and classes for content repository locking functionality.
|
javax.jcr.nodetype |
This package provides interfaces and classes for content repository node type functionality.
|
javax.jcr.observation |
Provides interfaces and classes for content repository event observation
functionality.
|
javax.jcr.query |
Provides interfaces and classes for content repository searching functionality.
|
javax.jcr.query.qom |
Provides interfaces and classes for content repository Query Object Model.
|
javax.jcr.retention |
Provides interfaces and classes for content repository retention management
functionality.
|
javax.jcr.security |
Provides interfaces and classes for content repository access control management
functionality.
|
javax.jcr.util |
Provides utility classes for the content repository API.
|
javax.jcr.version |
Provides interfaces and classes for content repository versioning functionality.
|
senselogic.sitevision.api.bookmark |
Bookmark utility interfaces
|
senselogic.sitevision.api.collaboration |
Collaboration utility interfaces.
|
senselogic.sitevision.api.context |
Context utility interfaces
|
senselogic.sitevision.api.cookie |
Cookie utility interfaces
|
senselogic.sitevision.api.device |
Device utility interfaces
|
senselogic.sitevision.api.i18n |
Internationalization utility interfaces
|
senselogic.sitevision.api.metadata |
Metadata utility interfaces
|
senselogic.sitevision.api.metadata.builder |
Temporary metadata value builders.
|
senselogic.sitevision.api.node |
Node utility interfaces, including predefined node iterators and node comparators
|
senselogic.sitevision.api.node.builder |
Node-related builders.
|
senselogic.sitevision.api.portlet |
Interfaces and classes that can be useful when developing custom portlets.
|
senselogic.sitevision.api.property |
Property utility interfaces
|
senselogic.sitevision.api.redirect |
Redirect utility interfaces.
|
senselogic.sitevision.api.render |
Rendering utility interfaces that might be needed when rendering
|
senselogic.sitevision.api.render.xslt |
XSLT rendering interfaces.
|
senselogic.sitevision.api.resource |
Resource utility interfaces (e.g. colors, fonts, decorations, icons, landing pages)
|
senselogic.sitevision.api.script |
Scripting utility interfaces and helpers that might be needed when using a template language (such as Velocity)
|
senselogic.sitevision.api.script.app |
RESTApp/WebApp utility interfaces and helpers.
|
senselogic.sitevision.api.search |
Search utility interfaces
|
senselogic.sitevision.api.search.index |
Index utility interfaces.
|
senselogic.sitevision.api.search.searcher.builder |
Search component builders.
|
senselogic.sitevision.api.security |
Security utility interfaces
|
senselogic.sitevision.api.security.jaas.callback |
Callback classes for custom JAAS modules/filters.
|
senselogic.sitevision.api.subscription |
Subscription and subscriber utility interfaces
|
senselogic.sitevision.api.tag |
Tag utility interfaces.
|
senselogic.sitevision.api.user |
User utility interfaces.
|
senselogic.sitevision.api.versioning |
Versioning utility interfaces (including publish/unpublish facilities)
|
senselogic.sitevision.api.webresource |
Web resource (pages, articles, files and images) utility interfaces
|
senselogic.sitevision.api.webresource.builder |
Temporary link target builders.
|
senselogic.sitevision.api.webresource.doctype |
DOCTYPE utility interfaces
|
senselogic.sitevision.api.webresource.structure |
Web resource structure and grouping utility interfaces
|
senselogic.sitevision.api.webresource.webcontent |
Web content (web content of pages, articles and templates) utility interfaces
|
senselogic.sitevision.api.xml |
XML parser utility interfaces.
|
Class and Description |
---|
AccessDeniedException
Exception thrown by access-related methods.
|
Binary
A
Binary object holds a JCR property value of type
BINARY . |
Credentials
Interface for all credentials that may be passed to the
Repository.login(Credentials credentials, String workspaceName) method. |
InvalidItemStateException
Exception thrown by the write methods of
Node and Property
and by Session.save() and Session.refresh(boolean) if an attempted
change would conflict with a change to the persistent workspace made through
another Session . |
InvalidLifecycleTransitionException
Exception thrown by Lifecycle management-related methods.
|
InvalidSerializedDataException
Exception thrown by the deserialization methods of
Session if
the serialized data being input has an invalid format. |
Item |
ItemExistsException
An exception thrown when an attempt is made to place an item in a position
where another item already exists.
|
ItemNotFoundException |
ItemVisitor
This interface defines two signatures of the
visit method; one
taking a Node , the other a Property . |
LoginException
Exception thrown by
and if
the specified credentials are invalid. |
MergeException
Exception thrown by
Node.merge(String srcWorkspace, boolean isDeep) . |
NamespaceException
Exception thrown by
if the specified uri is not registered in
the NamespaceRegistry . |
NamespaceRegistry
Each repository has a single, persistent namespace registry represented by
the
NamespaceRegistry object, accessed via Workspace.getNamespaceRegistry() . |
Node
The
Node interface represents a node in a workspace. |
NodeIterator
Allows easy iteration through a list of
Node s with
nextNode as well as a skip method inherited from
RangeIterator . |
NoSuchWorkspaceException
Exception thrown by
when a specific workspace is not found. |
PathNotFoundException
Exception thrown when no
Item exists at the specified path or
when the specified path implies intermediary Node s that do not
exist. |
Property
A
Property object represents the smallest granularity of content
storage. |
PropertyIterator
Allows easy iteration through a list of
Property s with
nextProperty as well as a skip method. |
RangeIterator
Extends
Iterator with the skip ,
getSize and getPosition methods. |
ReferentialIntegrityException
Exception thrown on referential integrity violation.
|
Repository
The entry point into the content repository.
|
RepositoryException
Main exception thrown by classes in this package.
|
Session
The
Session object provides read and (in level 2) write access
to the content of a particular workspace in the repository. |
UnsupportedRepositoryOperationException
Thrown by methods that are not supported by a particular implementation.
|
Value
A generic holder for the value of a property.
|
ValueFactory
The
ValueFactory object provides methods for the creation Value
objects that can then be used to set properties. |
ValueFormatException
Exception thrown when an attempt is made to assign a value to a property that
has an invalid format, given the type of the property.
|
Workspace
A
Workspace object represents a view onto a persitent workspace
within a repository. |
Class and Description |
---|
AccessDeniedException
Exception thrown by access-related methods.
|
InvalidItemStateException
Exception thrown by the write methods of
Node and Property
and by Session.save() and Session.refresh(boolean) if an attempted
change would conflict with a change to the persistent workspace made through
another Session . |
Node
The
Node interface represents a node in a workspace. |
PathNotFoundException
Exception thrown when no
Item exists at the specified path or
when the specified path implies intermediary Node s that do not
exist. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
RangeIterator
Extends
Iterator with the skip ,
getSize and getPosition methods. |
RepositoryException
Main exception thrown by classes in this package.
|
UnsupportedRepositoryOperationException
Thrown by methods that are not supported by a particular implementation.
|
Value
A generic holder for the value of a property.
|
Class and Description |
---|
RangeIterator
Extends
Iterator with the skip ,
getSize and getPosition methods. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
ItemExistsException
An exception thrown when an attempt is made to place an item in a position
where another item already exists.
|
ItemNotFoundException |
Node
The
Node interface represents a node in a workspace. |
NodeIterator
Allows easy iteration through a list of
Node s with
nextNode as well as a skip method inherited from
RangeIterator . |
PathNotFoundException
Exception thrown when no
Item exists at the specified path or
when the specified path implies intermediary Node s that do not
exist. |
RangeIterator
Extends
Iterator with the skip ,
getSize and getPosition methods. |
RepositoryException
Main exception thrown by classes in this package.
|
UnsupportedRepositoryOperationException
Thrown by methods that are not supported by a particular implementation.
|
Value
A generic holder for the value of a property.
|
Class and Description |
---|
RepositoryException
Main exception thrown by classes in this package.
|
Value
A generic holder for the value of a property.
|
Class and Description |
---|
AccessDeniedException
Exception thrown by access-related methods.
|
PathNotFoundException
Exception thrown when no
Item exists at the specified path or
when the specified path implies intermediary Node s that do not
exist. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
AccessDeniedException
Exception thrown by access-related methods.
|
PathNotFoundException
Exception thrown when no
Item exists at the specified path or
when the specified path implies intermediary Node s that do not
exist. |
RangeIterator
Extends
Iterator with the skip ,
getSize and getPosition methods. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
ItemVisitor
This interface defines two signatures of the
visit method; one
taking a Node , the other a Property . |
Node
The
Node interface represents a node in a workspace. |
Property
A
Property object represents the smallest granularity of content
storage. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
AccessDeniedException
Exception thrown by access-related methods.
|
InvalidItemStateException
Exception thrown by the write methods of
Node and Property
and by Session.save() and Session.refresh(boolean) if an attempted
change would conflict with a change to the persistent workspace made through
another Session . |
Item |
ItemExistsException
An exception thrown when an attempt is made to place an item in a position
where another item already exists.
|
MergeException
Exception thrown by
Node.merge(String srcWorkspace, boolean isDeep) . |
Node
The
Node interface represents a node in a workspace. |
NodeIterator
Allows easy iteration through a list of
Node s with
nextNode as well as a skip method inherited from
RangeIterator . |
NoSuchWorkspaceException
Exception thrown by
when a specific workspace is not found. |
PathNotFoundException
Exception thrown when no
Item exists at the specified path or
when the specified path implies intermediary Node s that do not
exist. |
RangeIterator
Extends
Iterator with the skip ,
getSize and getPosition methods. |
ReferentialIntegrityException
Exception thrown on referential integrity violation.
|
RepositoryException
Main exception thrown by classes in this package.
|
UnsupportedRepositoryOperationException
Thrown by methods that are not supported by a particular implementation.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Property
A
Property object represents the smallest granularity of content
storage. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
NodeIterator
Allows easy iteration through a list of
Node s with
nextNode as well as a skip method inherited from
RangeIterator . |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Session
The
Session object provides read and (in level 2) write access
to the content of a particular workspace in the repository. |
Class and Description |
---|
Binary
A
Binary object holds a JCR property value of type
BINARY . |
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Property
A
Property object represents the smallest granularity of content
storage. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
RepositoryException
Main exception thrown by classes in this package.
|
Class and Description |
---|
Node
The
Node interface represents a node in a workspace. |
RepositoryException
Main exception thrown by classes in this package.
|
Sitevision - Portal and Content Management Made Easy
Sitevision is an advanced Java enterprise portal product and a portlet container (JSR 286) that implements Java Content Repository (JSR 283).
Copyright© 2008-2022 Sitevision AB, all rights reserved.