|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.jackrabbit.standalone.cli.CommandHelper
public final class CommandHelper
Utility class for getting and setting context attributes.
| Field Summary | |
|---|---|
static String |
CURRENT_NODE_KEY
Current node key |
static String |
OUTPUT_KEY
output key |
static String |
REPO_ADDRESS_KEY
address key |
static String |
REPOSITORY_KEY
repository key |
static String |
SESSION_KEY
session key |
| Method Summary | |
|---|---|
static ResourceBundle |
getBundle()
|
static Node |
getCurrentNode(org.apache.commons.chain.Context ctx)
Gets the current working Node |
static Item |
getItem(org.apache.commons.chain.Context ctx,
String path)
Gets the Item at the given path. |
static Iterator |
getItems(org.apache.commons.chain.Context ctx,
Node node,
String pattern)
Gets the Item s under the given Node that
match the pattern |
static Node |
getNode(org.apache.commons.chain.Context ctx,
String path)
Gets the Node at the given path. |
static NodeIterator |
getNodes(org.apache.commons.chain.Context ctx,
Node node,
String pattern)
Gets the Node s under the given Node that
match the given pattern. |
static PrintWriter |
getOutput(org.apache.commons.chain.Context ctx)
Gets the current PrintWriter |
static PropertyIterator |
getProperties(org.apache.commons.chain.Context ctx,
Node node,
String pattern)
Gets the Property s under the current working node for the
given pattern |
static Repository |
getRepository(org.apache.commons.chain.Context ctx)
Gets the current working Repository |
static String |
getRepositoryAddress(org.apache.commons.chain.Context ctx)
|
static Session |
getSession(org.apache.commons.chain.Context ctx)
Gets the current working Session |
static boolean |
hasNode(org.apache.commons.chain.Context ctx,
String path)
Checks Node existence. |
static void |
setCurrentNode(org.apache.commons.chain.Context ctx,
Node node)
Sets the current working Node. |
static void |
setOutput(org.apache.commons.chain.Context ctx,
PrintWriter out)
Sets the current PrintWriter. |
static void |
setRepository(org.apache.commons.chain.Context ctx,
Repository repository,
String address)
Sets the current working Repository |
static void |
setSession(org.apache.commons.chain.Context ctx,
Session session)
Sets the current working Session |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final String CURRENT_NODE_KEY
public static final String REPOSITORY_KEY
public static final String SESSION_KEY
public static final String OUTPUT_KEY
public static final String REPO_ADDRESS_KEY
| Method Detail |
|---|
public static void setOutput(org.apache.commons.chain.Context ctx,
PrintWriter out)
PrintWriter.
ctx - the Contextout - the PrintWriter
public static void setCurrentNode(org.apache.commons.chain.Context ctx,
Node node)
Node.
ctx - the Contextnode - the current working Node.
public static void setRepository(org.apache.commons.chain.Context ctx,
Repository repository,
String address)
Repository
ctx - the Contextrepository - the current working Repository
public static void setSession(org.apache.commons.chain.Context ctx,
Session session)
throws CommandException
Session
ctx - the Contextsession - the current working Session
CommandException - if there's an open working Sessionpublic static PrintWriter getOutput(org.apache.commons.chain.Context ctx)
PrintWriter
ctx - the Context
PrintWriter
public static Node getCurrentNode(org.apache.commons.chain.Context ctx)
throws CommandException
Node
ctx - the Context
Node
CommandException - if the current working Node can't be found.
public static Repository getRepository(org.apache.commons.chain.Context ctx)
throws CommandException
Repository
ctx - the Context
Repository
CommandException - if the current working Repository is unset.
public static String getRepositoryAddress(org.apache.commons.chain.Context ctx)
throws CommandException
CommandException
public static Session getSession(org.apache.commons.chain.Context ctx)
throws CommandException
Session
ctx - the Context
Session
CommandException - if the current working Session is unset.
public static Node getNode(org.apache.commons.chain.Context ctx,
String path)
throws CommandException,
RepositoryException
Node at the given path.
ctx - the Contextpath - the path to the Node
Node at the given path
CommandException - if the Node isn't found.
RepositoryException - if the underlying repository throws a
RepositoryException
public static Item getItem(org.apache.commons.chain.Context ctx,
String path)
throws CommandException,
PathNotFoundException,
RepositoryException
Item at the given path. Node.
ctx - the Contextpath - the path to the Item
Item at the given path
CommandException - if a Command internal error occurs.
PathNotFoundException - if there's no Node at the given path.
RepositoryException - if the underlying repository throws a
RepositoryException
public static boolean hasNode(org.apache.commons.chain.Context ctx,
String path)
throws CommandException,
RepositoryException
Node existence.
ctx - the Contextpath - the path to the Node
Node exists at the given path
CommandException - if the current working Session is unset.
RepositoryException - if the underlying repository throws a
RepositoryException
public static NodeIterator getNodes(org.apache.commons.chain.Context ctx,
Node node,
String pattern)
throws RepositoryException
Node s under the given Node that
match the given pattern.
ctx - the Contextnode - the parent Nodepattern - the pattern
Iterator that contains the matching nodes
RepositoryException - if the underlying repository throws a
RepositoryException
public static PropertyIterator getProperties(org.apache.commons.chain.Context ctx,
Node node,
String pattern)
throws RepositoryException
Property s under the current working node for the
given pattern
ctx - the Contextnode - the parent Nodepattern - the pattern
PropertyIterator
RepositoryException - if the underlying repository throws a
RepositoryExceptionpublic static ResourceBundle getBundle()
ResourceBundle
public static Iterator getItems(org.apache.commons.chain.Context ctx,
Node node,
String pattern)
throws RepositoryException
Item s under the given Node that
match the pattern
ctx - the Contextnode - the parent Nodepattern - the pattern
Iterator with the Item s that
match the given pattern.
RepositoryException - if the underlying repository throws a
RepositoryException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||