Searched refs:childName (Results 101 - 125 of 159) sorted by relevance

1234567

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/policy/impl/
H A DObligationsImpl.java266 String childName = child.getLocalName();
267 if (childName != null) {
268 if (childName.equals(XACMLConstants.OBLIGATION)) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DEvidenceBase.java104 String childName = child.getLocalName();
105 if (childName.equals("Assertion")) {
107 } else if (childName.equals("AssertionIDReference")) {
H A DSubject.java197 String childName = child.getLocalName();
198 if (childName.equals("NameIdentifier")) {
202 else if (childName.equals("SubjectConfirmation")) {
H A DAssertionBase.java446 String childName = child.getLocalName();
447 if (childName.equals("Conditions"))
449 else if (childName.equals("Advice"))
451 else if (childName.equals("AuthenticationStatement")) {
455 else if (childName.equals("AuthorizationDecisionStatement")) {
460 else if (childName.equals("AttributeStatement")) {
464 else if (childName.equals("Signature")) {
H A DConditions.java237 String childName = child.getLocalName();
238 if (childName.equals("AudienceRestrictionCondition")) {
240 } else if (childName.equals("DoNotCacheCondition")) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DResourceImpl.java147 String childName = child.getLocalName();
150 if (childName.equals(XACMLConstants.ATTRIBUTE)) {
157 } else if (childName.equals(
H A DResponseImpl.java279 String childName = child.getLocalName();
280 if (childName != null) {
281 if (childName.equals(XACMLConstants.RESULT)) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/policy/impl/
H A DObligationsImpl.java266 String childName = child.getLocalName();
267 if (childName != null) {
268 if (childName.equals(XACMLConstants.OBLIGATION)) {
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSNameIdentifierMappingResponse.java162 String childName;
166 if ((childName = child.getLocalName()) != null) {
167 if (childName.equals(IFSConstants.STATUS)) {
175 } else if (childName.equals(IFSConstants.PROVIDER_ID)) {
177 } else if (childName.equals(IFSConstants.NAME_IDENTIFIER)) {
H A DFSResponse.java218 String childName;
222 if ((childName = child.getLocalName()) != null) {
223 if (childName.equals("Status")) {
233 } else if (childName.equals("Assertion")) {
242 + "element: " + childName);
246 } // end if childName != null
H A DFSAuthnResponse.java192 String childName;
196 if ((childName = child.getLocalName()) != null) {
197 if (childName.equals(IFSConstants.STATUS)) {
206 } else if (childName.equals(IFSConstants.ASSERTION)) {
211 } else if (childName.equals(IFSConstants.RELAY_STATE)) {
221 } else if (childName.equals(IFSConstants.PROVIDER_ID)) {
233 + "included wrong element: " + childName);
237 } // end if childName != null
H A DFSNameRegistrationResponse.java269 String childName;
273 if ((childName = child.getLocalName()) != null) {
274 if (childName.equals("Status")) {
281 } else if (childName.equals(IFSConstants.SIGNATURE)) {
282 } else if (childName.equals("ProviderID")) {
289 } else if (childName.equals("RelayState")) {
293 "included wrong element:" + childName);
296 } // end if childName != null
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSNameIdentifierMappingResponse.java165 String childName;
169 if ((childName = child.getLocalName()) != null) {
170 if (childName.equals(IFSConstants.STATUS)) {
178 } else if (childName.equals(IFSConstants.PROVIDER_ID)) {
180 } else if (childName.equals(IFSConstants.NAME_IDENTIFIER)) {
H A DFSResponse.java218 String childName;
222 if ((childName = child.getLocalName()) != null) {
223 if (childName.equals("Status")) {
233 } else if (childName.equals("Assertion")) {
242 + "element: " + childName);
246 } // end if childName != null
H A DFSAuthnResponse.java195 String childName;
199 if ((childName = child.getLocalName()) != null) {
200 if (childName.equals(IFSConstants.STATUS)) {
209 } else if (childName.equals(IFSConstants.ASSERTION)) {
214 } else if (childName.equals(IFSConstants.RELAY_STATE)) {
224 } else if (childName.equals(IFSConstants.PROVIDER_ID)) {
236 + "included wrong element: " + childName);
240 } // end if childName != null
H A DFSNameRegistrationResponse.java272 String childName;
276 if ((childName = child.getLocalName()) != null) {
277 if (childName.equals("Status")) {
284 } else if (childName.equals(IFSConstants.SIGNATURE)) {
285 } else if (childName.equals("ProviderID")) {
292 } else if (childName.equals("RelayState")) {
296 "included wrong element:" + childName);
299 } // end if childName != null
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/
H A DAssertionBase.java443 String childName = child.getLocalName();
444 if (childName.equals("Conditions"))
446 else if (childName.equals("Advice"))
448 else if (childName.equals("AuthenticationStatement")) {
452 else if (childName.equals("AuthorizationDecisionStatement")) {
457 else if (childName.equals("AttributeStatement")) {
461 else if (childName.equals("Signature")) {
H A DConditions.java237 String childName = child.getLocalName();
238 if (childName.equals("AudienceRestrictionCondition")) {
240 } else if (childName.equals("DoNotCacheCondition")) {
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/xml/
H A DXMLUtils.java410 public static Node getChildNode(Node parentNode, String childName) { argument
414 if (node.getNodeName().equalsIgnoreCase(childName))
459 public static Set getChildNodes(Node parentNode, String childName) { argument
464 if (node.getNodeName().equalsIgnoreCase(childName)) {
682 String childName = child.getLocalName();
684 if ((childName != null) && (childName.equals(tagName))
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/xml/
H A DXMLUtils.java408 public static Node getChildNode(Node parentNode, String childName) { argument
412 if (node.getNodeName().equalsIgnoreCase(childName))
457 public static Set getChildNodes(Node parentNode, String childName) { argument
462 if (node.getNodeName().equalsIgnoreCase(childName)) {
680 String childName = child.getLocalName();
682 if ((childName != null) && (childName.equals(tagName))
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSOAPCommunicator.java221 String childName = child.getLocalName();
223 debug.message("SOAPCommunicator.getSOAPBody: local name= " + childName);
225 if (childName.equals("Body") && SAMLConstants.SOAP_URI.equals(child.getNamespaceURI())) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSOAPCommunicator.java221 String childName = child.getLocalName();
223 debug.message("SOAPCommunicator.getSOAPBody: local name= " + childName);
225 if (childName.equals("Body") && SAMLConstants.SOAP_URI.equals(child.getNamespaceURI())) {
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAttributeImpl.java185 String childName;
189 if ((childName = child.getLocalName()) != null) {
190 if (childName.equals("AttributeValue")) {
202 + ": Invalid element:" + childName);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAttributeImpl.java185 String childName;
189 if ((childName = child.getLocalName()) != null) {
190 if (childName.equals("AttributeValue")) {
202 + ": Invalid element:" + childName);
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/federation/
H A DFSSAMLSelectTrustedPartnerTypeViewBean.java199 private boolean isChecked(String childName) { argument
200 CCCheckBox cb = (CCCheckBox)getChild(childName);

Completed in 58 milliseconds

1234567