Searched defs:root (Results 1 - 25 of 200) sorted by relevance

12345678

/forgerock/openam/openam-ui/openam-ui-ria/
H A D.eslintrc.js2 root: true,
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/impl/
H A DLDAPConfig.java49 * This method should return a DN that is the default root for the token store, based on the provided OpenAM root.
50 * @param root The OpenAM root.
51 * @return The token store default root DN.
53 protected abstract DN setDefaultTokenDNPrefix(DN root); argument
89 * The system property that will contain a custom token store root, if one has been set.
94 * @return the value of the default CTS root suffix
H A DCTSDataLayerConfiguration.java65 protected DN setDefaultTokenDNPrefix(DN root) { argument
66 return getTokenRootDN(root);
69 public static DN getTokenRootDN(DN root) { argument
70 return root.child("ou=tokens")
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMShowMenuEntry.java40 public AMShowMenuEntry(Node root) argument
43 NamedNodeMap attrs = root.getAttributes();
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/impl/
H A DLDAPConfigTest.java44 given(SystemProperties.get("test-root-suffix")).willReturn("badger");
56 given(SystemProperties.get("test-root-suffix")).willReturn(null);
68 given(SystemProperties.get("test-root-suffix")).willReturn(null);
83 given(SystemProperties.get("test-root-suffix")).willReturn("dc=google,dc=com");
101 protected DN setDefaultTokenDNPrefix(DN root) { argument
102 return root.child("ou=config-test");
107 return "test-root-suffix";
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/unittest/
H A DTestHarness.java190 String root,
193 Set paths = servletContext.getResourcePaths(root);
187 getTestJSPs( ServletContext servletContext, Map map, String root, boolean top ) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSSAMLRequest.java72 * @param root the Document Element.
75 public FSSAMLRequest(Element root) throws SAMLException { argument
78 if (root == null) {
83 if (((tag = root.getLocalName()) == null) ||
91 parseMajorVersion(root.getAttribute("MajorVersion"));
94 parseMinorVersion(root.getAttribute("MinorVersion"));
96 List signs = XMLUtils.getElementsByTagNameNS1(root,
104 valid = manager.verifyXMLSignature(root);
106 valid = manager.verifyXMLSignature(root,
115 xmlString = XMLUtils.print(root);
[all...]
H A DFSIDPList.java72 * @param root the Document Element object.
76 public FSIDPList(Element root) throws FSMsgException { argument
77 if (root == null) {
81 String ns = root.getNamespaceURI();
92 if (((tag = root.getLocalName()) == null) ||
98 NodeList nl = root.getChildNodes();
H A DFSScoping.java80 * @param root the Document Element .
83 public FSScoping(Element root) throws FSMsgException { argument
84 if(root == null) {
88 String tagName = root.getLocalName();
93 NodeList childNodes = root.getChildNodes();
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DGetComplete.java81 * @param root the Document Element object.
84 public GetComplete(Element root) throws FSMsgException { argument
86 if (root == null) {
90 if (((tag = root.getLocalName()) == null) ||
98 NodeList contentnl = root.getChildNodes();
142 Element root = doc.getDocumentElement();
143 return new GetComplete(root);
H A DIDPEntries.java171 * @param root the Document Element object.
174 public IDPEntries(Element root) throws FSMsgException { argument
175 if (root == null) {
180 if (((tag = root.getLocalName()) == null) ||
185 NodeList nl = root.getChildNodes();
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMShowMenuEntry.java40 public AMShowMenuEntry(Node root) argument
43 NamedNodeMap attrs = root.getAttributes();
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/impl/
H A DLDAPConfig.java49 * This method should return a DN that is the default root for the token store, based on the provided OpenAM root.
50 * @param root The OpenAM root.
51 * @return The token store default root DN.
53 protected abstract DN setDefaultTokenDNPrefix(DN root); argument
89 * The system property that will contain a custom token store root, if one has been set.
94 * @return the value of the default CTS root suffix
H A DCTSDataLayerConfiguration.java67 protected DN setDefaultTokenDNPrefix(DN root) { argument
68 return getTokenRootDN(root);
71 public static DN getTokenRootDN(DN root) { argument
72 return root.child("ou=tokens")
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/cts/impl/
H A DLDAPConfigTest.java44 given(SystemProperties.get("test-root-suffix")).willReturn("badger");
56 given(SystemProperties.get("test-root-suffix")).willReturn(null);
68 given(SystemProperties.get("test-root-suffix")).willReturn(null);
83 given(SystemProperties.get("test-root-suffix")).willReturn("dc=google,dc=com");
101 protected DN setDefaultTokenDNPrefix(DN root) { argument
102 return root.child("ou=config-test");
107 return "test-root-suffix";
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/unittest/
H A DTestHarness.java190 String root,
193 Set paths = servletContext.getResourcePaths(root);
187 getTestJSPs( ServletContext servletContext, Map map, String root, boolean top ) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSSAMLRequest.java72 * @param root the Document Element.
75 public FSSAMLRequest(Element root) throws SAMLException { argument
78 if (root == null) {
83 if (((tag = root.getLocalName()) == null) ||
91 parseMajorVersion(root.getAttribute("MajorVersion"));
94 parseMinorVersion(root.getAttribute("MinorVersion"));
96 List signs = XMLUtils.getElementsByTagNameNS1(root,
104 valid = manager.verifyXMLSignature(root);
106 valid = manager.verifyXMLSignature(root,
115 xmlString = XMLUtils.print(root);
[all...]
H A DFSIDPList.java72 * @param root the Document Element object.
76 public FSIDPList(Element root) throws FSMsgException { argument
77 if (root == null) {
81 String ns = root.getNamespaceURI();
92 if (((tag = root.getLocalName()) == null) ||
98 NodeList nl = root.getChildNodes();
H A DFSScoping.java80 * @param root the Document Element .
83 public FSScoping(Element root) throws FSMsgException { argument
84 if(root == null) {
88 String tagName = root.getLocalName();
93 NodeList childNodes = root.getChildNodes();
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DGetComplete.java81 * @param root the Document Element object.
84 public GetComplete(Element root) throws FSMsgException { argument
86 if (root == null) {
90 if (((tag = root.getLocalName()) == null) ||
98 NodeList contentnl = root.getChildNodes();
142 Element root = doc.getDocumentElement();
143 return new GetComplete(root);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/
H A DSMSDataLayerConfiguration.java49 protected DN setDefaultTokenDNPrefix(DN root) { argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/
H A DRequestSecurityTokenResponse.java80 * @param root <RequestedSecurityToken> element
83 public RequestSecurityTokenResponse(Element root) argument
88 if (root == null) {
96 if (((tag = root.getLocalName()) == null) ||
109 NodeList list = root.getChildNodes();
161 Element root = doc.getDocumentElement();
163 return new RequestSecurityTokenResponse(root);
179 Element root = doc.getDocumentElement();
181 return new RequestSecurityTokenResponse(root);
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/resources/labels/
H A DLabelsDataLayerConfiguration.java66 protected DN setDefaultTokenDNPrefix(DN root) { argument
67 return getTokenRootDN(root);
70 public static DN getTokenRootDN(DN root) { argument
71 return root.child("ou=uma_resource_set_labels");
/forgerock/openidm-v4/openidm-maintenance/src/main/java/org/forgerock/openidm/maintenance/upgrade/
H A DStaticFileUpdate.java39 private final Path root; field in class:StaticFileUpdate
48 this.root = openidmRoot;
83 destination = root.resolve(path.toString() + OLD_SUFFIX + timestamp);
84 Files.move(root.resolve(path),
96 Files.copy(inputStream, root.resolve(path), StandardCopyOption.REPLACE_EXISTING);
117 final Path destination = root.resolve(path.toString() + NEW_SUFFIX + timestamp);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/
H A DSMSDataLayerConfiguration.java50 protected DN setDefaultTokenDNPrefix(DN root) { argument

Completed in 42 milliseconds

12345678