| /glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/ |
| H A D | DoubleLinkedList.java | 125 public synchronized void insertAtHead(Linkable node) argument 127 if (node instanceof Linkable) 131 node.setNext(null); // Fixup node nextlink. 132 node.setPrevious(null); // Fixup node backlink. 133 this.head = node; // Insert node at head of list. 137 Linkable oldHead = this.head; // Fixup current head node. 138 oldHead.setPrevious(node); // Se 155 insertAtTail(Linkable node) argument 239 removeFromList(Linkable node) argument [all...] |
| H A D | Linkable.java | 59 public void setNext(Linkable node); argument 60 public void setPrevious(Linkable node); argument
|
| /glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/runtime/ |
| H A D | WebCacheNode.java | 41 package com.sun.enterprise.deployment.node.runtime; 43 import com.sun.enterprise.deployment.node.DeploymentDescriptorNode; 46 * This node handles the web-cache untime deployment descriptors
|
| /glassfish-3.1.2/cluster/common/src/main/java/com/sun/enterprise/util/cluster/ |
| H A D | Paths.java | 56 public final static String getNodesDir(final Node node) { argument 57 if (node == null) // don't do that! 60 String nodesDir = node.getNodeDirAbsoluteUnixStyle(); 63 nodesDir = node.getInstallDirUnixStyle() + "/glassfish/nodes"; 68 public final static String getNodeDir(final Node node) { argument 69 return getNodesDir(node) + "/" + node.getName(); 72 public final static String getDasPropsPath(final Node node) { argument 73 return getNodeDir(node) + "/" + DAS_PROPS_SUBPATH; 76 public static String getInstanceDirPath(final Node node, fina argument [all...] |
| /glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/ejb/ |
| H A D | AroundTimeoutNode.java | 41 package com.sun.enterprise.deployment.node.ejb; 44 * This node handles all information relative to injection-complete xml tag
|
| H A D | ExcludeListNode.java | 47 package com.sun.enterprise.deployment.node.ejb; 51 import com.sun.enterprise.deployment.node.DeploymentDescriptorNode; 52 import com.sun.enterprise.deployment.node.DescriptorFactory; 53 import com.sun.enterprise.deployment.node.MethodNode; 54 import com.sun.enterprise.deployment.node.XMLElement;
|
| /glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/runtime/web/ |
| H A D | CookiePropertiesNode.java | 41 package com.sun.enterprise.deployment.node.runtime.web; 44 * This node is the superclass for all web related runtime nodes
|
| H A D | WebPropertyContainerNode.java | 41 package com.sun.enterprise.deployment.node.runtime.web; 43 import com.sun.enterprise.deployment.node.XMLElement; 47 * superclass node for WebProperty container
|
| H A D | WebRuntimeNode.java | 41 package com.sun.enterprise.deployment.node.runtime.web; 43 import com.sun.enterprise.deployment.node.runtime.RuntimeDescriptorNode; 47 * This node is the superclass for all web related runtime nodes
|
| /glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/ws/ |
| H A D | UnsupportedConfigurationException.java | 41 package com.sun.enterprise.deployment.node.ws;
|
| /glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/ |
| H A D | DataSourceDefinitionNode.java | 41 package com.sun.enterprise.deployment.node; 89 Node node = appendChild(parent, nodeName); 90 appendTextChild(node, TagNames.DATA_SOURCE_DESCRIPTION, dataSourceDesc.getDescription()); 91 appendTextChild(node, TagNames.DATA_SOURCE_NAME, dataSourceDesc.getName()); 92 appendTextChild(node, TagNames.DATA_SOURCE_CLASS_NAME, dataSourceDesc.getClassName()); 93 appendTextChild(node, TagNames.DATA_SOURCE_SERVER_NAME, dataSourceDesc.getServerName()); 94 appendTextChild(node, TagNames.DATA_SOURCE_PORT_NUMBER, dataSourceDesc.getPortNumber()); 95 appendTextChild(node, TagNames.DATA_SOURCE_DATABASE_NAME, dataSourceDesc.getDatabaseName()); 96 appendTextChild(node, TagNames.DATA_SOURCE_URL, dataSourceDesc.getUrl()); 97 appendTextChild(node, TagName [all...] |
| H A D | DisplayableComponentNode.java | 41 package com.sun.enterprise.deployment.node; 50 * This node class is responsible for handling all the information 69 * @param parent node for the DOM tree 71 * @return the DOM tree top node 74 Node node = super.writeDescriptor(parent, descriptor); 77 writeDisplayableComponentInfo(node, descriptor); 78 return node; 84 * @param the node to write the info to 87 protected void writeDisplayableComponentInfo(Node node, T descriptor) { argument 89 localizedNode.writeLocalizedMap(node, TagName [all...] |
| /glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/runtime/common/ |
| H A D | RuntimeNameValuePairNode.java | 47 package com.sun.enterprise.deployment.node.runtime.common; 50 import com.sun.enterprise.deployment.node.NameValuePairNode;
|
| /glassfish-3.1.2/cluster/admin/src/main/java/com/sun/enterprise/v3/admin/cluster/ |
| H A D | InstanceDirUtils.java | 53 Node node; field in class:InstanceDirUtils 57 InstanceDirUtils(Node node, ServerContext serverContext){ argument 58 this.node = node; 71 * Pass the node directory parent and the node directory name explicitly 73 * nodes registered on this node. 75 * If the configuration recorded an explicit directory for the node, 76 * then use it. Otherwise, use the default node directory of 79 String nodeDir = node [all...] |
| /glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/web/ |
| H A D | FunctionDescriptor.java | 50 Node node; field in class:FunctionDescriptor 52 this.node = n; 56 NodeList n1 = node.getChildNodes(); 69 NodeList n1 = node.getChildNodes();
|
| /glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/flashlight/impl/ |
| H A D | MonitoringRuntimeDataRegistryImpl.java | 73 public void add(String name, TreeNode node) { argument 75 children.put(name, node); 87 TreeNode node = (name != null)? children.get(name): null; 88 return node;
|
| /glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/io/ |
| H A D | AppClientDeploymentDescriptorFile.java | 44 import com.sun.enterprise.deployment.node.RootXMLNode; 45 import com.sun.enterprise.deployment.node.appclient.AppClientNode; 71 * @param the descriptor for which we need the node
|
| H A D | ApplicationDeploymentDescriptorFile.java | 44 import com.sun.enterprise.deployment.node.ApplicationNode; 45 import com.sun.enterprise.deployment.node.RootXMLNode; 73 * @param the descriptor for which we need the node
|
| H A D | EjbDeploymentDescriptorFile.java | 44 import com.sun.enterprise.deployment.node.RootXMLNode; 45 import com.sun.enterprise.deployment.node.ejb.EjbBundleNode; 71 * @param the descriptor for which we need the node
|
| H A D | WebDeploymentDescriptorFile.java | 44 import com.sun.enterprise.deployment.node.RootXMLNode; 45 import com.sun.enterprise.deployment.node.web.WebBundleNode; 66 * @param descriptor descriptor for which we need the node
|
| H A D | WebFragmentDeploymentDescriptorFile.java | 44 import com.sun.enterprise.deployment.node.RootXMLNode; 45 import com.sun.enterprise.deployment.node.web.WebFragmentNode; 66 * @param descriptor descriptor for which we need the node
|
| /glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/ |
| H A D | XpathPrefixResolver.java | 51 public XpathPrefixResolver(Node node) { argument 52 super(node);
|
| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/util/ |
| H A D | DomUtil.java | 96 /** Get the trimed text content of a node or null if there is no text 117 for (Node node = first; node != null; 118 node = node.getNextSibling()) { 119 //System.out.println("getNode: " + name + " " + node.getNodeName()); 120 if( node.getNodeType()!=Node.ELEMENT_NODE) 123 name.equals( node.getNodeName() ) ) { 124 return node; 127 return node; 141 setAttribute(Node node, String attName, String val) argument 148 removeAttribute( Node node, String attName ) argument 156 setText(Node node, String val) argument [all...] |
| /glassfish-3.1.2/cluster/ssh/src/main/java/org/glassfish/cluster/ssh/connect/ |
| H A D | NodeRunner.java | 77 public boolean isSshNode(Node node) { argument 79 if (node == null) { 82 if (node.getType() == null) 84 return node.getType().equals("SSH"); 87 public boolean isDcomNode(Node node) { argument 89 if (node == null) { 92 if (node.getType() == null) 94 return node.getType().equals("DCOM"); 98 * Run an asadmin command on a Node. The node may be local or remote. If 99 * it is remote then SSH is used to execute the command on the node 126 runAdminCommandOnNode(Node node, StringBuilder output, List<String> args) argument 136 runAdminCommandOnNode(Node node, StringBuilder output, boolean waitForReaderThreads, List<String> args) argument 163 runAdminCommandOnLocalNode(Node node, StringBuilder output, boolean waitForReaderThreads, List<String> args, List<String> stdinLines) argument 212 runAdminCommandOnRemoteNode(Node node, StringBuilder output, List<String> args, List<String> stdinLines) argument [all...] |
| /glassfish-3.1.2/cluster/ssh/src/main/java/org/glassfish/cluster/ssh/util/ |
| H A D | DcomInfo.java | 61 private final Node node; field in class:DcomInfo 83 node = theNode; 85 if (node == null) 89 if (!isDcomNode(node)) 90 throw new WindowsException(Strings.get("not.dcom.node", 93 SshConnector conn = node.getSshConnector(); 107 notFinal = node.getNodeHost(); 121 notFinal = node.getWindowsDomain(); 126 notFinal = node.getInstallDirUnixStyle(); 141 String notFinal2 = node 203 isDcomNode(Node node) argument [all...] |