/forgerock/openam-v13/openam-federation/openam-federation-library/src/test/java/com/sun/identity/saml2/profile/ |
H A D | SLOLocationTest.java | 80 private SingleLogoutServiceElement endpointFor(String binding, String location) { argument 83 ret.setLocation(location);
|
/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/dispatch/ |
H A D | PushMessageChallengeResponsePredicate.java | 37 private String location; field in class:PushMessageChallengeResponsePredicate 41 * location of the JsonPointer location is equal to a predicted challenge response value. 45 * @param location Json Pointer string of the location of the value expected to the the challenge response. 47 public PushMessageChallengeResponsePredicate(byte[] secret, String challenge, String location) { argument 48 Reject.ifNull(secret, challenge, location); 49 this.location = location; 59 Jwt signedJwt = new JwtReconstruction().reconstructJwt(content.get(new JsonPointer(location)) 85 setLocation(String location) argument [all...] |
H A D | SignedJwtVerificationPredicate.java | 34 private String location; field in class:SignedJwtVerificationPredicate 40 * @param location JsonPointer String, used to locate the jwt within the JsonValue passed to perform(). 42 public SignedJwtVerificationPredicate(byte[] secret, String location) { argument 45 this.location = location; 52 SignedJwt signedJwt = new JwtReconstruction().reconstructJwt(content.get(new JsonPointer(location)).asString(), 73 * Sets the location for this predicate. Used when deserilialized from the CTS. 74 * @param location The location for this predicate. 76 public void setLocation(String location) { argument [all...] |
/forgerock/openam/openam-federation/openam-federation-library/src/test/java/com/sun/identity/saml2/profile/ |
H A D | SLOLocationTest.java | 80 private SingleLogoutServiceElement endpointFor(String binding, String location) { argument 83 ret.setLocation(location);
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/spi/ |
H A D | Archiver.java | 88 * @param location location of the archive file. 90 public void archive(String fileName, String location) { argument 94 } else if ((location == null) || (location.length() == 0)) { 103 String timestampedFileName = location + PREFIX + fileName + "." + 105 String completePath = location + PREFIX + fileName; 134 * @param location The location of the keystores. 136 public void archiveKeyStore(String logName, String location) { argument [all...] |
/forgerock/openam-v13/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/servlet/ |
H A D | AuditableHttpServletResponse.java | 85 public void sendRedirect(String location) throws IOException { argument 86 super.sendRedirect(location);
|
/forgerock/openidm-v4/openidm-security/src/main/java/org/forgerock/openidm/security/impl/ |
H A D | JcaKeyStoreHandler.java | 44 private String location; field in class:JcaKeyStoreHandler 49 public JcaKeyStoreHandler(String type, String location, String password) throws Exception { argument 50 this.location = location; 58 InputStream in = new FileInputStream(location); 80 OutputStream out = new FileOutputStream(location); 95 return location;
|
/forgerock/openam/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/servlet/ |
H A D | AuditableHttpServletResponse.java | 85 public void sendRedirect(String location) throws IOException { argument 86 super.sendRedirect(location);
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/spi/ |
H A D | Archiver.java | 91 * @param location location of the archive file. 93 public void archive(String fileName, String location) { argument 97 } else if ((location == null) || (location.length() == 0)) { 106 String timestampedFileName = location + PREFIX + fileName + "." + 108 String completePath = location + PREFIX + fileName; 137 * @param location The location of the keystores. 139 public void archiveKeyStore(String logName, String location) { argument [all...] |
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/validation/ |
H A D | ResponseValidationFilter.java | 26 * Filter for global validation of responses. Validates headers, including cookies and location, for banned characters 67 public void sendRedirect(String location) throws IOException { argument 68 super.sendRedirect(validate(location));
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/ |
H A D | AuthorityBinding.java | 229 *@param location A URI describing how to locate and communicate with the 238 public AuthorityBinding(int authKind, String location, String binding) argument 240 if (location == null || location.length() == 0){ 248 _location = location;
|
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/batch/helpers/ |
H A D | Requester.java | 67 * @param location Endpoint destination of this request. May not be null. 74 public JsonValue create(String location, String resourceId, JsonValue payload, Context context) argument 77 Reject.ifTrue(StringUtils.isEmpty(location), "The endpoint destination may not be null or empty."); 81 final CreateRequest createRequest = Requests.newCreateRequest(location, payload); 93 * @param location Endpoint destination of this request. May not be null. 99 public JsonValue read(String location, String resourceId, Context context) argument 102 Reject.ifTrue(StringUtils.isEmpty(location), "The endpoint destination may not be null or empty."); 106 final ReadRequest readRequest = Requests.newReadRequest(location, resourceId); 113 * @param location Endpoint destination of this request. May not be null. 120 public JsonValue update(String location, Strin argument 141 delete(String location, String resourceId, Context context) argument 162 action(String location, String resourceId, String actionId, JsonValue payload, Context context) argument 192 query(String location, String queryId, Context context) argument [all...] |
/forgerock/authenticator-android-v2/app/src/androidTest/java/com/forgerock/authenticator/ |
H A D | PushAuthActivityTest.java | 229 private CoordinatesProvider translate(final GeneralLocation location, final float x, final float y) { argument 233 float xy[] = location.calculateCoordinates(view);
|
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/realm/ |
H A D | ServicesEditViewBean.java | 54 public String location = null; field in class:ServicesEditViewBean 89 if (location == null) { 90 location = (String)getPageSessionAttribute(
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/ |
H A D | IDPEntry.java | 56 private String location = null; field in class:IDPEntry 69 * @param location 71 public IDPEntry(String providerID,String providerName,String location) { argument 74 this.location = location; 119 * Returns the location URI of the Identity Provider. 121 * @return the location URI of the Identity Provider. 125 return location; 129 * Sets the location URI of the Identity Provider. 131 * @param location th 134 setLocation(String location) argument [all...] |
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/batch/helpers/ |
H A D | Requester.java | 67 * @param location Endpoint destination of this request. May not be null. 74 public JsonValue create(String location, String resourceId, JsonValue payload, Context context) argument 77 Reject.ifTrue(StringUtils.isEmpty(location), "The endpoint destination may not be null or empty."); 81 final CreateRequest createRequest = Requests.newCreateRequest(location, payload); 93 * @param location Endpoint destination of this request. May not be null. 99 public JsonValue read(String location, String resourceId, Context context) argument 102 Reject.ifTrue(StringUtils.isEmpty(location), "The endpoint destination may not be null or empty."); 106 final ReadRequest readRequest = Requests.newReadRequest(location, resourceId); 113 * @param location Endpoint destination of this request. May not be null. 120 public JsonValue update(String location, Strin argument 141 delete(String location, String resourceId, Context context) argument 162 action(String location, String resourceId, String actionId, JsonValue payload, Context context) argument 192 query(String location, String queryId, Context context) argument [all...] |
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/realm/ |
H A D | ServicesEditViewBean.java | 54 public String location = null; field in class:ServicesEditViewBean 89 if (location == null) { 90 location = (String)getPageSessionAttribute(
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/validation/ |
H A D | ResponseValidationFilter.java | 26 * Filter for global validation of responses. Validates headers, including cookies and location, for banned characters 67 public void sendRedirect(String location) throws IOException { argument 68 super.sendRedirect(validate(location));
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/ |
H A D | IDPEntry.java | 56 private String location = null; field in class:IDPEntry 69 * @param location 71 public IDPEntry(String providerID,String providerName,String location) { argument 74 this.location = location; 119 * Returns the location URI of the Identity Provider. 121 * @return the location URI of the Identity Provider. 125 return location; 129 * Sets the location URI of the Identity Provider. 131 * @param location th 134 setLocation(String location) argument [all...] |
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/assertion/ |
H A D | AuthorityBinding.java | 229 *@param location A URI describing how to locate and communicate with the 238 public AuthorityBinding(int authKind, String location, String binding) argument 240 if (location == null || location.length() == 0){ 248 _location = location;
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/ |
H A D | AssertionIDRequestUtil.java | 122 StringBuffer location = new StringBuffer(); 124 samlAuthorityEntityID, role, realm, binding, location); 129 location.toString(), realm, samlAuthorityEntityID, role, roled); 167 String location = fillInBasicAuthInfo(locationSB.toString(), realm, 172 url = new URL(location); 487 String binding, StringBuffer location) throws SAML2Exception { 550 location.append(aIDReqService.getLocation()); 554 if (location.length() == 0) { 646 private static String fillInBasicAuthInfo(String location, String realm, argument 668 return SAML2Utils.fillInBasicAuthInfo(config, location); 485 getRoleDescriptorAndLocation( String samlAuthorityEntityID, String role, String realm, String binding, StringBuffer location) argument 671 sendAssertionIDRequestBySOAP( AssertionIDRequest assertionIDRequest, String location, String realm, String samlAuthorityEntityID, String role, RoleDescriptorType roled) argument [all...] |
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/federation/ |
H A D | EntityPropertiesBase.java | 80 public String location; field in class:EntityPropertiesBase 248 * location (either hosted or remote) 253 location = (String)getPageSessionAttribute(ENTITY_LOCATION); 257 return (location != null && location.equals(HOSTED)) ? true : false;
|
/forgerock/openidm-v4/openidm-crypto/src/main/java/org/forgerock/openidm/crypto/impl/ |
H A D | CryptoServiceImpl.java | 94 * Opens a connection to the specified URI location and returns an input 97 * location is or contains {@code null}, this method returns {@code null}. 99 * @param location 100 * the location to open the stream for. 101 * @return an input stream for reading the content of the location, or 102 * {@code null} if no location. 106 private InputStream openStream(String location) throws IOException { argument 108 if (location != null) { 110 IdentityServer.getFileForPath(location, IdentityServer.getInstance() 115 logger.error("ERROR - KeyStore not found under CryptoService#location {}", 199 generateDefaultKey(KeyStore ks, String alias, String location, char[] password) argument [all...] |
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/federation/ |
H A D | EntityPropertiesBase.java | 80 public String location; field in class:EntityPropertiesBase 248 * location (either hosted or remote) 253 location = (String)getPageSessionAttribute(ENTITY_LOCATION); 257 return (location != null && location.equals(HOSTED)) ? true : false;
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/ |
H A D | AssertionIDRequestUtil.java | 124 StringBuffer location = new StringBuffer(); 126 samlAuthorityEntityID, role, realm, binding, location); 131 location.toString(), realm, samlAuthorityEntityID, role, roled); 169 String location = fillInBasicAuthInfo(locationSB.toString(), realm, 174 url = new URL(location); 489 String binding, StringBuffer location) throws SAML2Exception { 552 location.append(aIDReqService.getLocation()); 556 if (location.length() == 0) { 648 private static String fillInBasicAuthInfo(String location, String realm, argument 670 return SAML2Utils.fillInBasicAuthInfo(config, location); 487 getRoleDescriptorAndLocation( String samlAuthorityEntityID, String role, String realm, String binding, StringBuffer location) argument 673 sendAssertionIDRequestBySOAP( AssertionIDRequest assertionIDRequest, String location, String realm, String samlAuthorityEntityID, String role, RoleDescriptorType roled) argument [all...] |