|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.mmbase.bridge.util.AbstractNode
org.mmbase.bridge.implementation.BasicNode
org.mmbase.bridge.implementation.BasicNodeManager
This class represents a node's type information object - what used to be the 'builder'. It contains all the field and attribuut information, as well as GUI data for editors and some information on deribed and deriving types. It also contains some maintenance code - code to create new nodes, en code to query objects belonging to the same manager. Since node types are normally maintained through use of config files (and not in the database), as wel as for security issues, the data of a nodetype cannot be changed except through the use of an administration module (which is why we do not include setXXX methods here).
| Nested Class Summary | |
protected class |
BasicNodeManager.NodeAndId
Structure to temporary contain an MMObjectNode and a BasicCloud#uniqueId() |
| Field Summary | |
protected MMObjectBuilder |
builder
|
protected Map |
fieldTypes
|
| Fields inherited from class org.mmbase.bridge.implementation.BasicNode |
cloud, nodeManager, noderef |
| Fields inherited from class org.mmbase.bridge.util.AbstractNode |
ACTION_COMMIT, ACTION_CREATE, ACTION_DELETE, ACTION_EDIT |
| Fields inherited from interface org.mmbase.bridge.NodeManager |
GUI_PLURAL, GUI_SINGULAR, ORDER_CREATE, ORDER_EDIT, ORDER_LIST, ORDER_NONE, ORDER_SEARCH |
| Method Summary | |
void |
commit()
Commit the node to the database. |
protected BasicNode |
createBasicNode()
BasicNodeManager is garantueed to return BasicNode's. |
FieldList |
createFieldList()
Returns a new, empty field list for this nodemanager |
protected BasicNodeManager.NodeAndId |
createMMObjectNode()
Creates new MMObjectNode for the current node manager. |
Node |
createNode()
Creates a new node. |
NodeList |
createNodeList()
Returns a new, empty node list for this nodemanager |
NodeQuery |
createQuery()
Creates a query for this NodeNanager. |
RelationList |
createRelationList()
Returns a new, empty relation list for this nodemanager |
void |
delete(boolean deleteRelations)
Removes the Node. |
RelationManagerList |
getAllowedRelations()
Retrieve all relation managers that can be used to create relations for objects of this nodemanager. |
RelationManagerList |
getAllowedRelations(NodeManager nodeManager,
String role,
String direction)
Retrieve all relation managers that can be used to create relations for objects from this nodemanager, to the specified manager, using the specified role and direction. |
RelationManagerList |
getAllowedRelations(String nodeManager,
String role,
String direction)
Retrieve all relation managers that can be used to create relations for objects from this nodemanager, to the specified manager, using the specified role and direction. |
NodeManagerList |
getDescendants()
Retrieve a list of descendant nodemanagers (the Nodemanager that - posisbly indirectly - extend from this nodemanager) |
String |
getDescription()
Returns the description of this node manager. |
String |
getDescription(Locale locale)
Returns the description of this node manager in a specified language. |
Field |
getField(String fieldName)
Returns the field with the specified name. |
FieldList |
getFields()
Returns a list of all fields defined for this node manager. |
FieldList |
getFields(int order)
Retrieve a subset of field types of this NodeManager, depending on a given order. |
protected Map |
getFieldTypes()
Returns the fieldlist of this nodemanager after making sure the manager is synced with the builder. |
Collection |
getFunctions()
Returns all the Function objects of this Node |
String |
getGUIName()
Returns the descriptive name of this node manager. |
String |
getGUIName(int plurality)
Returns the descriptive name of this node manager. |
String |
getGUIName(int plurality,
Locale locale)
Returns the descriptive name of this node manager ina a specified language. |
String |
getInfo(String command)
Retrieve info from a node manager based on a command string. |
String |
getInfo(String command,
ServletRequest req,
ServletResponse resp)
Retrieve info from a node manager based on a command string Similar to the $MOD command in SCAN. |
NodeList |
getList(NodeQuery query)
Executes a query and returns the result as nodes of this NodeManager (or of extensions) |
NodeList |
getList(String command,
Map parameters)
Retrieve info (as a list of virtual nodes) from a node manager based on a command string. |
NodeList |
getList(String command,
Map parameters,
ServletRequest req,
ServletResponse resp)
Retrieve info from a node manager based on a command string Similar to the LIST command in SCAN. |
NodeList |
getList(String constraints,
String sorted,
String directions)
Returns a list of nodes belonging to this node manager. |
String |
getName()
Returns the name of this node manager. |
protected Function |
getNodeFunction(String functionName)
|
NodeManager |
getParent()
Retrieve the parent of this NodeManager (the Nodemanager that this nodemanager extends from) |
Map |
getProperties()
Retrieve a copy of the node manager's properties |
String |
getProperty(String name)
Retrieve a property of the node manager. |
boolean |
hasField(String fieldName)
Tests whether the field with the specified name exists in this nodemanager. |
protected void |
initManager()
Initializes the NodeManager: determines the MMObjectBuilder if it was not already known, and fills the fields list. |
boolean |
isNodeManager()
Determine whether this Node is a NodeManager. |
boolean |
mayCreateNode()
Check if the current user may create a new node of this type. |
protected void |
setNodeManager(MMObjectNode node)
|
protected static void |
sync(MMObjectBuilder builder,
Map fieldTypes,
NodeManager nodeManager)
|
NodeManager |
toNodeManager()
Returns this as a NodeManager. |
| Methods inherited from class org.mmbase.bridge.implementation.BasicNode |
cancel, countRelatedNodes, countRelatedNodes, createAlias, createFunctionValue, createParameters, deleteAlias, deleteRelations, edit, finalize, getAliases, getBooleanValue, getByteSize, getByteSize, getByteValue, getChanged, getCloud, getContext, getDateValue, getDoubleValue, getFloatValue, getInputStreamValue, getIntValue, getListValue, getLongValue, getNode, getNodeManager, getNodeValue, getNumber, getPossibleContexts, getRelatedNodes, getRelations, getRelations, getSize, getStringValue, getValueWithoutProcess, getXMLValue, hashCode, hasRelations, init, invalidateNode, isChanged, isChanged, isNew, isNull, mayChangeContext, mayDelete, mayWrite, setContext, setNode, setSize, setValueWithoutChecks, toNodeNumber, toString |
| Methods inherited from class java.lang.Object |
clone, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.mmbase.bridge.NodeManager |
getCloud |
| Methods inherited from interface java.lang.Comparable |
compareTo |
| Field Detail |
protected MMObjectBuilder builder
protected Map fieldTypes
| Method Detail |
protected void setNodeManager(MMObjectNode node)
setNodeManager in class BasicNodepublic final boolean isNodeManager()
Node
isNodeManager in interface NodeisNodeManager in class AbstractNodepublic final NodeManager toNodeManager()
Node
toNodeManager in interface NodetoNodeManager in class AbstractNodeprotected void initManager()
protected static void sync(MMObjectBuilder builder,
Map fieldTypes,
NodeManager nodeManager)
protected Map getFieldTypes()
protected BasicNodeManager.NodeAndId createMMObjectNode()
BasicNodeManager.NodeAndIdprotected BasicNode createBasicNode()
createNode()
public final Node createNode()
NodeManager
createNode in interface NodeManagerNode
public NodeManager getParent()
throws NotFoundException
NodeManager
getParent in interface NodeManagerNotFoundException - if no parent exists (i.e. this nodeManager is "object")public NodeManagerList getDescendants()
NodeManager
getDescendants in interface NodeManagerpublic String getName()
NodeManager
getName in interface NodeManagerpublic String getProperty(String name)
NodeManager
getProperty in interface NodeManagername - the name of the property
public Map getProperties()
NodeManager
getProperties in interface NodeManagerpublic String getGUIName()
NodeManager
getGUIName in interface NodeManagerpublic String getGUIName(int plurality)
NodeManager
getGUIName in interface NodeManagerplurality - the plurality (number of objects) for which to return a description
(NodeManager.GUI_SINGULAR or NodeManager.GUI_PLURAL)
public String getGUIName(int plurality,
Locale locale)
NodeManager
getGUIName in interface NodeManagerplurality - the plurality (number of objects) for which to return a description
(NodeManager.GUI_SINGULAR or NodeManager.GUI_PLURAL)locale - the locale that determines the language for the GUI name
public String getDescription()
NodeManager
getDescription in interface NodeManagerpublic String getDescription(Locale locale)
NodeManager
getDescription in interface NodeManagerlocale - the locale that determines the language for the description
public FieldList getFields()
NodeManager
getFields in interface NodeManagerpublic FieldList getFields(int order)
NodeManager
getFields in interface NodeManagerorder - the order in which to list the fields
FieldList object, which is a specialized List of Field objects.NodeManager.ORDER_NONE,
NodeManager.ORDER_CREATE,
NodeManager.ORDER_EDIT,
NodeManager.ORDER_LIST,
NodeManager.ORDER_SEARCH
public Field getField(String fieldName)
throws NotFoundException
NodeManager
getField in interface NodeManagerfieldName - the name of the field to be returned
NotFoundException - is the field does not existpublic boolean hasField(String fieldName)
NodeManager
hasField in interface NodeManagerfieldName - the name of the field to be returned
true if the field with the requested name existspublic NodeQuery createQuery()
NodeManager
createQuery in interface NodeManagerNodeManager.getList(NodeQuery),
Cloud.createNodeQuery()public NodeList getList(NodeQuery query)
NodeManager
getList in interface NodeManagerquery - query to execute
public NodeList getList(String constraints,
String sorted,
String directions)
NodeManager
"number = 100" (!=, <, >, <= and >= can also be used)
"name = 'admin'",
"email IS NULL" (indicating the email field is empty)
"email LIKE '%.org'" (indication the email should end with .org)
"number BETWEEN 99 AND 101"
"name IN ('admin', 'anonymous')"
The NOT operator can be used to get the opposite result like:
"NOT (number = 100)"
"NOT (name = 'admin')",
"email IS NOT NULL"
"email NOT LIKE '%.org'" (indication the email should not end with .org)
"number NOT BETWEEN 99 AND 101"
"name NOT IN ('admin', 'anonymous')"
Some special functions (not part of standard SQL, but most databases
support them) can be used like:
"LOWER(name) = 'admin'" (to also allow 'Admin' to be selected) "LENGTH(name) > 5" (to only select names longer then 5 characters)Constraints can be linked together using AND and OR:
"((number=100) OR (name='admin') AND email LIKE '%.org')"The single quote can be escaped using it twice for every single occurence:
"name='aaa''bbb'" (if we want to find the string aaa'bbb)For more info consult a SQL tutorial like Jim Hoffman's introduction to Structured Query Language.
getList in interface NodeManagerconstraints - Constraints to prevent nodes from being
included in the resulting list which would normally
by included or null if no constraints
should be applied .sorted - A comma separated list of field names on which the
returned list should be sorted or null
if the order of the returned virtual nodes doesn't
matter.directions - A comma separated list of values indicating wether
to sort up (ascending) or down (descending) on the
corresponding field in the orderby
parameter or null if sorting on all
fields should be up.
The value DOWN (case insensitive) indicates
that sorting on the corresponding field should be
down, all other values (including the
empty value) indicate that sorting on the
corresponding field should be up.
If the number of values found in this parameter are
less than the number of fields in the
orderby parameter, all fields that
don't have a corresponding direction value are
sorted according to the last specified direction
value.
public RelationManagerList getAllowedRelations()
NodeManager
getAllowedRelations in interface NodeManager
public RelationManagerList getAllowedRelations(String nodeManager,
String role,
String direction)
NodeManager
getAllowedRelations in interface NodeManagernodeManager - the name of the nodemanger with which to make a relation, can be nullrole - the role with which to make a relation, can be nulldirection - the search direction ("source", "destination", "both"), can be null
public RelationManagerList getAllowedRelations(NodeManager nodeManager,
String role,
String direction)
NodeManager
getAllowedRelations in interface NodeManagernodeManager - the nodemanger with which to make a relation, can be nullrole - the role with which to make a relation, can be nulldirection - the search direction ("source", "destination", "both"), can be null
public String getInfo(String command)
NodeManager
getInfo in interface NodeManagercommand - the info to obtain, i.e. "USER-OS".
public String getInfo(String command,
ServletRequest req,
ServletResponse resp)
NodeManager
getInfo in interface NodeManagercommand - the info to obtain, i.e. "USER-OS".req - the Request item to use for obtaining user information. For backward compatibility.resp - the Response item to use for redirecting users. For backward compatibility.
public NodeList getList(String command,
Map parameters)
NodeManager
getList in interface NodeManagercommand - the info to obtain, i.e. "USER-OS".parameters - a hashtable containing the named parameters of the list.
public NodeList getList(String command,
Map parameters,
ServletRequest req,
ServletResponse resp)
NodeManager
getList in interface NodeManagercommand - the info to obtain, i.e. "USER-OS".parameters - a hashtable containing the named parameters of the list.req - the Request item to use for obtaining user information. For backward compatibility.resp - the Response item to use for redirecting users. For backward compatibility.
public boolean mayCreateNode()
NodeManager
mayCreateNode in interface NodeManagerpublic void commit()
Node
commit in interface Nodecommit in class BasicNodepublic void delete(boolean deleteRelations)
Node
delete in interface Nodedelete in class BasicNodepublic Collection getFunctions()
Node
getFunctions in interface NodegetFunctions in class BasicNodeprotected Function getNodeFunction(String functionName)
getNodeFunction in class BasicNodepublic FieldList createFieldList()
NodeManager
createFieldList in interface NodeManagerpublic NodeList createNodeList()
NodeManager
createNodeList in interface NodeManagerpublic RelationList createRelationList()
NodeManager
createRelationList in interface NodeManager
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||