Searched defs:attributeSchemaNode (Results 1 - 5 of 5) sorted by relevance

/forgerock/openam/openam-upgrade/src/main/java/com/sun/identity/sm/
H A DAbstractUpgradeHelper.java188 protected static Node updateNode(Document newValueNode, String element, Node attributeSchemaNode) { argument
190 NodeList childNodes = attributeSchemaNode.getChildNodes();
196 attributeSchemaNode.removeChild(item);
200 Node newNode = attributeSchemaNode.getOwnerDocument().importNode(newValueNode.getFirstChild(), true);
202 NodeList childrens = attributeSchemaNode.getChildNodes();
215 attributeSchemaNode.insertBefore(newNode, currentChild);
225 attributeSchemaNode.appendChild(newNode);
228 return attributeSchemaNode;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DServiceSchema.java793 public void replaceAttributeSchema(String attrName, Node attributeSchemaNode) throws SSOException, argument
795 replaceChildNode(SMSUtils.SCHEMA_ATTRIBUTE, attrName, attributeSchemaNode);
883 void replaceChildNode(String nodeType, String nodeName, Node attributeSchemaNode) throws SSOException, argument
896 Node newNode = schemaDoc.importNode(attributeSchemaNode, true);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DServiceSchema.java810 public void replaceAttributeSchema(String attrName, Node attributeSchemaNode) throws SSOException, argument
812 replaceChildNode(SMSUtils.SCHEMA_ATTRIBUTE, attrName, attributeSchemaNode);
900 void replaceChildNode(String nodeType, String nodeName, Node attributeSchemaNode) throws SSOException, argument
913 Node newNode = schemaDoc.importNode(attributeSchemaNode, true);
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/
H A DUpgradeUtils.java756 Node attributeSchemaNode,
771 attributeSchemaNode);
775 String attrName, Node attributeSchemaNode)
784 replaceAttributeSchema(serviceSchema, attrName, attributeSchemaNode);
918 * @param attributeSchemaNode attribute to add
928 Node attributeSchemaNode,
932 addAttributeToSchema(ss, attributeSchemaNode);
939 * @param attributeSchemaNode The attribute is add
945 Node attributeSchemaNode)
957 bis = new ByteArrayInputStream(XMLUtils.print(attributeSchemaNode)
751 modifyAttributeInExistingSchema( String serviceName, String subSchemaName, String schemaType, String attrName, Node attributeSchemaNode, SSOToken adminToken) argument
774 modifyAttributeInExistingSchema(ServiceSchema serviceSchema, String attrName, Node attributeSchemaNode) argument
924 addAttributeToSchema( String serviceName, String subSchemaName, String schemaType, Node attributeSchemaNode, SSOToken adminToken) argument
944 addAttributeToSchema(ServiceSchema serviceSchema, Node attributeSchemaNode) argument
1036 replaceAttributeSchema( String serviceName, String subSchemaName, String schemaType, String attributeName, SSOToken adminToken, Node attributeSchemaNode) argument
1057 replaceAttributeSchema( ServiceSchema serviceSchema, String attributeName, Node attributeSchemaNode) argument
[all...]
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/
H A DUpgradeUtils.java756 Node attributeSchemaNode,
771 attributeSchemaNode);
775 String attrName, Node attributeSchemaNode)
784 replaceAttributeSchema(serviceSchema, attrName, attributeSchemaNode);
918 * @param attributeSchemaNode attribute to add
928 Node attributeSchemaNode,
932 addAttributeToSchema(ss, attributeSchemaNode);
939 * @param attributeSchemaNode The attribute is add
945 Node attributeSchemaNode)
957 bis = new ByteArrayInputStream(XMLUtils.print(attributeSchemaNode)
751 modifyAttributeInExistingSchema( String serviceName, String subSchemaName, String schemaType, String attrName, Node attributeSchemaNode, SSOToken adminToken) argument
774 modifyAttributeInExistingSchema(ServiceSchema serviceSchema, String attrName, Node attributeSchemaNode) argument
924 addAttributeToSchema( String serviceName, String subSchemaName, String schemaType, Node attributeSchemaNode, SSOToken adminToken) argument
944 addAttributeToSchema(ServiceSchema serviceSchema, Node attributeSchemaNode) argument
1036 replaceAttributeSchema( String serviceName, String subSchemaName, String schemaType, String attributeName, SSOToken adminToken, Node attributeSchemaNode) argument
1057 replaceAttributeSchema( ServiceSchema serviceSchema, String attributeName, Node attributeSchemaNode) argument
[all...]

Completed in 48 milliseconds