Searched refs:childNode (Results 26 - 50 of 77) sorted by relevance

1234

/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DStatusDetailImpl.java198 Node childNode = nList.item(i);
199 if (childNode.getLocalName() != null) {
200 statusDetailList.add(XMLUtils.print(childNode));
H A DIDPListImpl.java261 Node childNode = nList.item(i);
262 String cName = childNode.getLocalName();
267 protoFactory.createIDPEntry(XMLUtils.print(childNode)));
270 Element getCompleteElement = (Element)childNode;
H A DScopingImpl.java284 Node childNode = nList.item(i);
285 String cName = childNode.getLocalName();
289 idpList = ProtocolFactory.getInstance().createIDPList((Element) childNode);
291 RequesterID reqID = ProtocolFactory.getInstance().createRequesterID((Element) childNode);
H A DAuthnRequestImpl.java678 Node childNode = nList.item(i);
679 String cName = childNode.getLocalName() ;
684 assertionFactory.createIssuer((Element)childNode);
687 signatureString = XMLUtils.print((Element) childNode);
692 protoFactory.createExtensions((Element)childNode);
696 assertionFactory.createSubject((Element)childNode);
700 protoFactory.createNameIDPolicy((Element)childNode);
704 assertionFactory.createConditions((Element)childNode);
709 (Element)childNode);
713 protoFactory.createScoping((Element)childNode);
[all...]
H A DRequestAbstractImpl.java560 Node childNode = nList.item(i);
561 if (childNode.getNodeType() == Node.ELEMENT_NODE) {
562 childElementList.add(childNode);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DIDPListImpl.java261 Node childNode = nList.item(i);
262 String cName = childNode.getLocalName();
267 protoFactory.createIDPEntry(XMLUtils.print(childNode)));
270 Element getCompleteElement = (Element)childNode;
H A DScopingImpl.java284 Node childNode = nList.item(i);
285 String cName = childNode.getLocalName();
289 idpList = ProtocolFactory.getInstance().createIDPList((Element) childNode);
291 RequesterID reqID = ProtocolFactory.getInstance().createRequesterID((Element) childNode);
H A DAuthnRequestImpl.java678 Node childNode = nList.item(i);
679 String cName = childNode.getLocalName() ;
684 assertionFactory.createIssuer((Element)childNode);
687 signatureString = XMLUtils.print((Element) childNode);
692 protoFactory.createExtensions((Element)childNode);
696 assertionFactory.createSubject((Element)childNode);
700 protoFactory.createNameIDPolicy((Element)childNode);
704 assertionFactory.createConditions((Element)childNode);
709 (Element)childNode);
713 protoFactory.createScoping((Element)childNode);
[all...]
H A DRequestAbstractImpl.java560 Node childNode = nList.item(i);
561 if (childNode.getNodeType() == Node.ELEMENT_NODE) {
562 childElementList.add(childNode);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/impl/
H A DECPRequestImpl.java394 Node childNode = nList.item(i);
395 if (childNode.getNodeType() != Node.ELEMENT_NODE) {
398 String cName = childNode.getLocalName() ;
402 (Element)childNode);
406 (Element) childNode);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/impl/
H A DECPRequestImpl.java394 Node childNode = nList.item(i);
395 if (childNode.getNodeType() != Node.ELEMENT_NODE) {
398 String cName = childNode.getLocalName() ;
402 (Element)childNode);
406 (Element) childNode);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DServiceSchemaManagerImpl.java541 Node childNode = (Node) nodes.next();
542 String stype = XMLUtils.getNodeAttributeValue(childNode,
550 ss.update(childNode);
552 subSchemas.put(type, new ServiceSchemaImpl(this, childNode));
558 Node childNode = XMLUtils.getChildNode(schemaRoot, schemaName);
559 if (childNode == null) {
564 ss.update(childNode);
566 subSchemas.put(type, new ServiceSchemaImpl(this, childNode));
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DServiceSchemaManagerImpl.java543 Node childNode = (Node) nodes.next();
544 String stype = XMLUtils.getNodeAttributeValue(childNode,
552 ss.update(childNode);
554 subSchemas.put(type, new ServiceSchemaImpl(this, childNode));
560 Node childNode = XMLUtils.getChildNode(schemaRoot, schemaName);
561 if (childNode == null) {
566 ss.update(childNode);
568 subSchemas.put(type, new ServiceSchemaImpl(this, childNode));
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DSubjectConfirmationDataImpl.java134 Node childNode = nList.item(i);
135 if (childNode.getLocalName() != null) {
136 getContent().add(childNode);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DSubjectConfirmationDataImpl.java134 Node childNode = nList.item(i);
135 if (childNode.getLocalName() != null) {
136 getContent().add(childNode);
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/treeview/
H A Dtreeview-debug.js990 * @param childNode {Node} the new node
994 appendChild: function(childNode) {
997 sib.nextSibling = childNode;
998 childNode.previousSibling = sib;
1000 this.children[this.children.length] = childNode;
1001 childNode.applyParent(this);
1011 return childNode;
H A Dtreeview-min.js28 this.fireEvent("parentChange");return true;},appendChild:function(childNode){if(this.hasChildren()){var sib=this.children[this.children.length-1];sib.nextSibling=childNode;childNode.previousSibling=sib;}
29 this.children[this.children.length]=childNode;childNode.applyParent(this);if(this.childrenRendered&&this.expanded){this.getChildrenEl().style.display="";}
30 return childNode;},appendTo:function(parentNode){return parentNode.appendChild(this);},insertBefore:function(node){var p=node.parent;if(p){if(this.tree){this.tree.popNode(this);}
H A Dtreeview.js981 * @param childNode {Node} the new node
985 appendChild: function(childNode) {
988 sib.nextSibling = childNode;
989 childNode.previousSibling = sib;
991 this.children[this.children.length] = childNode;
992 childNode.applyParent(this);
1002 return childNode;
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/treeview/
H A Dtreeview-debug.js990 * @param childNode {Node} the new node
994 appendChild: function(childNode) {
997 sib.nextSibling = childNode;
998 childNode.previousSibling = sib;
1000 this.children[this.children.length] = childNode;
1001 childNode.applyParent(this);
1011 return childNode;
H A Dtreeview-min.js28 this.fireEvent("parentChange");return true;},appendChild:function(childNode){if(this.hasChildren()){var sib=this.children[this.children.length-1];sib.nextSibling=childNode;childNode.previousSibling=sib;}
29 this.children[this.children.length]=childNode;childNode.applyParent(this);if(this.childrenRendered&&this.expanded){this.getChildrenEl().style.display="";}
30 return childNode;},appendTo:function(parentNode){return parentNode.appendChild(this);},insertBefore:function(node){var p=node.parent;if(p){if(this.tree){this.tree.popNode(this);}
H A Dtreeview.js981 * @param childNode {Node} the new node
985 appendChild: function(childNode) {
988 sib.nextSibling = childNode;
989 childNode.previousSibling = sib;
991 this.children[this.children.length] = childNode;
992 childNode.applyParent(this);
1002 return childNode;
/forgerock/openam-v13/openam-upgrade/src/main/java/com/sun/identity/sm/
H A DServiceSchemaModifications.java176 Node childNode = XMLUtils.getChildNode(schemaRoot, schemaType);
177 if (childNode != null) {
178 schemas.put(schemaType, new ServiceSchemaImpl(childNode));
/forgerock/openam/openam-upgrade/src/main/java/com/sun/identity/sm/
H A DServiceSchemaModifications.java176 Node childNode = XMLUtils.getChildNode(schemaRoot, schemaType);
177 if (childNode != null) {
178 schemas.put(schemaType, new ServiceSchemaImpl(childNode));
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBrowserController.java572 BasicNode childNode = new BasicNode(newEntryDn);
585 treeModel.insertNodeInto(childNode, parentNode, childIndex);
586 startRefreshNode(childNode, null, false);
587 return new TreePath(treeModel.getPathToRoot(childNode));
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/browser/
H A DBrowserController.java617 BasicNode childNode = new BasicNode(newEntryDn);
632 treeModel.insertNodeInto(childNode, parentNode, childIndex);
633 startRefreshNode(childNode, null, false);
634 return new TreePath(treeModel.getPathToRoot(childNode));

Completed in 120 milliseconds

1234