|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XmlNode | |
---|---|
com.sibvisions.rad.remote.serializer | Contains classes for serialize/deserialize java objects. |
com.sibvisions.rad.server.config | Contains classes which are used for configuration purposes. |
com.sibvisions.rad.server.security | Contains classes which handles the validation of username/password combinations, with different protocols and different authentication systems. |
com.sibvisions.rad.ui | Contains technology and platform independent UI implementations. |
com.sibvisions.util.xml | Contains utility classes for handling xml files. |
javax.rad.server | Contains classes and interfaces needed for implementing a remote server. |
Uses of XmlNode in com.sibvisions.rad.remote.serializer |
---|
Methods in com.sibvisions.rad.remote.serializer that return XmlNode | |
---|---|
XmlNode |
XmlNodeSerializer.read(UniversalSerializer pSerializer,
java.io.DataInputStream pIn,
int pTypeValue,
TypeCache pCache)
Reads in a serialized object from a stream. |
Methods in com.sibvisions.rad.remote.serializer that return types with arguments of type XmlNode | |
---|---|
java.lang.Class<XmlNode> |
XmlNodeSerializer.getTypeClass()
Gets the type class that can be serialized by this serializer. |
Methods in com.sibvisions.rad.remote.serializer with parameters of type XmlNode | |
---|---|
void |
XmlNodeSerializer.write(UniversalSerializer pSerializer,
java.io.DataOutputStream pOut,
XmlNode pObject,
TypeCache pCache)
Writes a serialized object to a stream. |
Uses of XmlNode in com.sibvisions.rad.server.config |
---|
Methods in com.sibvisions.rad.server.config that return XmlNode | |
---|---|
XmlNode |
UpToDateConfigFile.getNode(java.lang.String pName)
Gets the value for a property as xml representation. |
XmlNode |
ApplicationZone.getNode(java.lang.String pName)
Gets the xml node for a property name from the application configuration. |
Methods in com.sibvisions.rad.server.config that return types with arguments of type XmlNode | |
---|---|
java.util.List<XmlNode> |
UpToDateConfigFile.getNodes(java.lang.String pName)
Gets the value for a property as xml representation. |
java.util.List<XmlNode> |
ApplicationZone.getNodes(java.lang.String pName)
Gets the xml node or a list of nodes for a property name from the application configuration. |
Methods in com.sibvisions.rad.server.config with parameters of type XmlNode | |
---|---|
protected void |
UpToDateConfigFile.prepareIncludeNodes(XmlNode pNode)
Prepares the include nodes <include>... |
protected boolean |
UpToDateConfigFile.replacePlaceholder(XmlNode pNode,
java.util.Properties pImportedProperties,
java.util.Properties pSystemProperties,
java.util.Map<java.lang.String,java.lang.String> pEnvironmentProperties)
Replaces all property placeholder ${x.y.z} with
the corresponding value in the properties, recursively. |
protected void |
UpToDateConfigFile.setContent(XmlNode pNode)
Sets the internal data node. |
void |
UpToDateConfigFile.setNode(java.lang.String pName,
XmlNode pNode)
Sets a specific node to the application configuration file. |
Uses of XmlNode in com.sibvisions.rad.server.security |
---|
Methods in com.sibvisions.rad.server.security with parameters of type XmlNode | |
---|---|
static DBCredentials |
DataSourceHandler.createDBCredentials(XmlNode pNode)
Creates a new instance of DBCredentials with information provided
in xml format. |
static DBCredentials |
DataSourceHandler.createDBCredentials(XmlNode pNode,
java.lang.String pEnvironment)
Creates a new instance of DBCredentials with information provided
in xml format. |
Uses of XmlNode in com.sibvisions.rad.ui |
---|
Methods in com.sibvisions.rad.ui that return XmlNode | |
---|---|
static XmlNode |
ApplicationUtil.getConfig(java.lang.String pName)
Gets the parsed xml configuration. |
Uses of XmlNode in com.sibvisions.util.xml |
---|
Methods in com.sibvisions.util.xml that return XmlNode | |
---|---|
static XmlNode |
XmlNode.createDoctype(java.lang.String pName,
java.lang.String pPublicId,
java.lang.String pSystemId)
Creates the xml doctype tag <! |
static XmlNode |
XmlNode.createXmlDeclaration()
Creates the xml declaration tag <? |
XmlNode |
XmlNode.get(int pIndex)
Gets the node from the given index. |
XmlNode |
XmlNode.getFirstTextNode()
Gets the first text node. |
XmlNode |
XmlNode.getNode(java.lang.String pNodePath)
Gets a specific (sub) XmlNode based on the current
XmlNode . |
XmlNode |
XmlNode.getParent()
Gets the parent XmlNode . |
XmlNode |
XmlNode.insertNode(java.lang.String pNodePath,
java.lang.Object pValue)
Inserts a specific XmlNode at a defined position
based on the current XmlNode . |
XmlNode |
XmlWorker.read(java.io.File pSource)
Parses a xml file and create a XmlNode structure. |
XmlNode |
XmlWorker.read(java.io.InputStream pXmlSource)
Parses a xml file and create a XmlNode structure. |
XmlNode |
XmlWorker.readAndClose(java.io.InputStream pXmlSource)
Parses a xml file and create a XmlNode structure. |
static XmlNode |
XmlWorker.readNode(java.io.File pFile)
Reads a file and returns the node. |
static XmlNode |
XmlWorker.readNode(java.io.InputStream pStream)
Reads a stream and returns the node. |
XmlNode |
XmlNode.remove(int pIndex)
Remove a sub XmlNode from the known sub nodes. |
XmlNode |
XmlNode.removeNode(java.lang.String pNodePath)
Removes a specific (sub) XmlNode based on the current
XmlNode . |
XmlNode |
XmlNode.setNode(java.lang.String pNodePath,
java.lang.Object pValue)
Sets a specific (sub) XmlNode based on the current
XmlNode . |
Methods in com.sibvisions.util.xml that return types with arguments of type XmlNode | |
---|---|
java.util.List<XmlNode> |
XmlNode.getNodes()
Gets the list of sub XmlNode elements. |
java.util.List<XmlNode> |
XmlNode.getNodes(short pType)
Gets the list of sub XmlNode elements of the given type. |
java.util.List<XmlNode> |
XmlNode.getNodes(java.lang.String pNodePath)
Gets a list of XmlNode s based on the current
XmlNode . |
java.util.List<XmlNode> |
XmlNode.getSubNodes()
Deprecated. since 2.6 use getNodes() instead. |
Methods in com.sibvisions.util.xml with parameters of type XmlNode | |
---|---|
void |
XmlNode.add(XmlNode pNode)
Adds a XmlNode as a known sub node, at the end of
the known sub nodes list. |
void |
XmlNode.insert(int pPosition,
XmlNode pNode)
Inserts a XmlNode as a known sub node at a defined
position, in the sub node list. |
boolean |
XmlNode.remove(XmlNode xmnSub)
Remove a sub XmlNode from the known sub nodes. |
void |
XmlWorker.write(java.io.File pTarget,
XmlNode pNode)
Writes the structure of a XmlNode as xml stream to the specified
target file. |
void |
XmlWorker.write(java.io.OutputStream pXmlTarget,
XmlNode pNode)
Writes the structure of a XmlNode as xml stream to the specified
target stream. |
Method parameters in com.sibvisions.util.xml with type arguments of type XmlNode | |
---|---|
void |
XmlNode.addAll(java.util.Collection<XmlNode> pNodes)
Adds all the nodes as a known sub node, at the end of the known sub nodes list. |
void |
XmlNode.insertAll(int pIndex,
java.util.Collection<XmlNode> pNodes)
Adds all the nodes as a known sub node, at the end of the known sub nodes list. |
void |
XmlNode.setNodes(java.util.List<XmlNode> pNodes)
Sets the list of sub XmlNode elements. |
void |
XmlNode.setSubNodes(java.util.List<XmlNode> pSubNodes)
Deprecated. since 2.6 use setNodes(List) instead. |
Constructors in com.sibvisions.util.xml with parameters of type XmlNode | |
---|---|
XmlNode(short pType,
java.lang.String pName,
java.lang.String pValue,
XmlNode pParentNode)
Creates a new instance of XmlNode . |
|
XmlNode(short pType,
java.lang.String pName,
XmlNode pParentNode)
Creates a new instance of XmlNode with a parent. |
Uses of XmlNode in javax.rad.server |
---|
Methods in javax.rad.server that return XmlNode | |
---|---|
XmlNode |
IConfiguration.getNode(java.lang.String pName)
Gets the value for a property in xml representation. |
Methods in javax.rad.server that return types with arguments of type XmlNode | |
---|---|
java.util.List<XmlNode> |
IConfiguration.getNodes(java.lang.String pName)
Gets a list of values for a property in xml representation. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |