Searched defs:to (Results 1 - 25 of 119) sorted by relevance

12345

/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/sample5/script/
H A DreconStats.js4 // Then use the external email service to email the report
5 // 3 objects are passed to the script:
27 to : "idmadmin1@example.com",
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/setup/
H A DLDIFTemplates.java6 * The contents of this file are subject to the terms
62 private static void copyRecursively(ServletContext servletCtx, String from, String to) { argument
68 copyRecursively(servletCtx, resourcePath, to);
72 String newPath = to + "/ldif/" + resourcePath.substring(PATH_PREFIX.length());
85 * Copies the schema files recursively from the WAR file to the OpenAM installation directory.
87 * @param dir The directory where the files needs to be copied to.
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/services/email/
H A DMailServer.java4 * The contents of this file are subject to the terms
45 * @param to The address that the E-mail message is sent.
48 * @throws MessagingException in the case where the module was unable to send the e-mail.
50 void sendHtmlEmail(String to, String subject, String message) throws MessagingException; argument
57 * @param to The address that the E-mail message is sent.
61 * @throws MessagingException in case where the module was unable to send the e-mail.
63 void sendHtmlEmail(String from, String to, String subject, String message, Map<String, Set<String>> options) argument
71 * @param to The address that the E-mail message is sent
75 * @throws MessagingException in case where the module was unable to send the e-mail
77 void sendEmail(String from, String to, Strin argument
87 sendEmail(String to, String subject, String message) argument
104 sendEmail(String to, String subject, String message, String mimeType) argument
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DSMSGateway.java6 * The contents of this file are subject to the terms
39 * Sends a SMS message to the phone with the code
43 * @param to The address that the SMS message is sent
49 * @throws AuthLoginException In case the module was unable to send the SMS
51 void sendSMSMessage(String from, String to, String subject, argument
55 * Sends an email message to the mail with the code
59 * @param to The address that the E-mail message is sent
65 * @throws AuthLoginException In case the module was unable to send the e-mail
67 void sendEmail(String from, String to, String subject, argument
H A DDefaultSMSGatewayImpl.java6 * The contents of this file are subject to the terms
62 public void sendSMSMessage(String from, String to, String subject, argument
64 if (to == null) {
71 // If the phone does not contain provider info, append ATT to it
72 // Note : need to figure out a way to add the provider information
75 if (to.indexOf("@") == -1) {
76 to = to + "@txt.att.net";
78 tos[0] = to;
103 sendEmail(String from, String to, String subject, String message, String code, Map options) argument
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/
H A DEmailGateway.java6 * The contents of this file are subject to the terms
32 * Sends an email message to the mail with the code
36 * @param to The address that the E-mail message is sent
42 public void sendEmail(String from, String to, String subject, argument
H A DDefaultEmailGatewayImpl.java6 * The contents of this file are subject to the terms
55 * Sends an email message to the mail with the code
59 * @param to The address that the E-mail message is sent
65 public void sendEmail(String from, String to, String subject, argument
68 if (to == null) {
70 debug.message("DefaultEmailGatewayImpl::sendEmail to header is empty");
78 String tos[] = new String[] { to };
93 "email sent to : " + to + ".");
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaEmailService.java2 * The contents of this file are subject to the terms of the Common Development and
42 * {@literal to} username with the {@literal realm} to the users email address.
50 * Sends a HTML email to the specified user.
53 * @param to The username of the user to send the email to.
58 public void email(String realm, String to, String subject, String message) throws MessagingException { argument
59 Reject.ifNull(realm, to, subject, message);
60 String emailAddress = resolveEmailAddress(to, real
[all...]
/forgerock/openam/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DSMSGateway.java6 * The contents of this file are subject to the terms
35 * Defines the ability to send SMS (Short Message Service) and e-mail via a gateway implementation.
37 * information about where it is to be sent to. The messages are expected to be delivered within the limits of the
38 * current authentication session and/or module state's timeout timeframe. The implementation is expected to operate in
39 * either a synchronous or asynchronous fashion, with no requirements on when the message should be delivered to the
42 * Thread Safety: The implementation does not have to be implemented in a thread-safe manner, each OTP code will be sent
50 * Sends a SMS message to the phone with the code
54 * @param to Th
62 sendSMSMessage(String from, String to, String subject, String message, String code, Map options) argument
78 sendEmail(String from, String to, String subject, String message, String code, Map options) argument
[all...]
H A DDefaultSMSGatewayImpl.java6 * The contents of this file are subject to the terms
62 public void sendSMSMessage(String from, String to, String subject, argument
64 if (to == null) {
71 // If the phone does not contain provider info, append ATT to it
72 // Note : need to figure out a way to add the provider information
75 if (to.indexOf("@") == -1) {
76 to = to + "@txt.att.net";
78 tos[0] = to;
103 sendEmail(String from, String to, String subject, String message, String code, Map options) argument
[all...]
/forgerock/openam/openam-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/
H A DEmailGateway.java6 * The contents of this file are subject to the terms
32 * Sends an email message to the mail with the code
36 * @param to The address that the E-mail message is sent
42 public void sendEmail(String from, String to, String subject, argument
H A DDefaultEmailGatewayImpl.java6 * The contents of this file are subject to the terms
55 * Sends an email message to the mail with the code
59 * @param to The address that the E-mail message is sent
65 public void sendEmail(String from, String to, String subject, argument
68 if (to == null) {
70 debug.message("DefaultEmailGatewayImpl::sendEmail to header is empty");
78 String tos[] = new String[] { to };
93 "email sent to : " + to + ".");
/forgerock/openam/openam-core/src/main/java/com/sun/identity/setup/
H A DLDIFTemplates.java6 * The contents of this file are subject to the terms
62 private static void copyRecursively(ServletContext servletCtx, String from, String to) { argument
68 copyRecursively(servletCtx, resourcePath, to);
72 String newPath = to + "/ldif/" + resourcePath.substring(PATH_PREFIX.length());
85 * Copies the schema files recursively from the WAR file to the OpenAM installation directory.
87 * @param dir The directory where the files needs to be copied to.
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/services/email/
H A DMailServer.java4 * The contents of this file are subject to the terms
45 * @param to The address that the E-mail message is sent.
48 * @throws MessagingException in the case where the module was unable to send the e-mail.
50 void sendHtmlEmail(String to, String subject, String message) throws MessagingException; argument
57 * @param to The address that the E-mail message is sent.
61 * @throws MessagingException in case where the module was unable to send the e-mail.
63 void sendHtmlEmail(String from, String to, String subject, String message, Map<String, Set<String>> options) argument
71 * @param to The address that the E-mail message is sent
75 * @throws MessagingException in case where the module was unable to send the e-mail
77 void sendEmail(String from, String to, Strin argument
87 sendEmail(String to, String subject, String message) argument
104 sendEmail(String to, String subject, String message, String mimeType) argument
[all...]
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaEmailService.java2 * The contents of this file are subject to the terms of the Common Development and
42 * {@literal to} username with the {@literal realm} to the users email address.
50 * Sends a HTML email to the specified user.
53 * @param to The username of the user to send the email to.
58 public void email(String realm, String to, String subject, String message) throws MessagingException { argument
59 Reject.ifNull(realm, to, subject, message);
60 String emailAddress = resolveEmailAddress(to, real
[all...]
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/policy/conditions/
H A DMigrationReport.java2 * The contents of this file are subject to the terms of the Common Development and
23 * Report that holds all information about what old policy condition was migrated to what new entitlement condition.
43 * Adds a migration from an old policy subject condition to a new entitlement subject condition.
46 * @param to The new entitlement subject condition class name.
48 void migratedSubjectCondition(String from, String to) { argument
49 subjectConditionMigration.put(from, to);
53 * Adds a migration from an old policy environment condition to a new entitlement environment condition.
56 * @param to The new entitlement environment condition class name.
58 void migratedEnvironmentCondition(String from, String to) { argument
59 environmentConditionMigration.put(from, to);
[all...]
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/policy/conditions/
H A DMigrationReport.java2 * The contents of this file are subject to the terms of the Common Development and
23 * Report that holds all information about what old policy condition was migrated to what new entitlement condition.
43 * Adds a migration from an old policy subject condition to a new entitlement subject condition.
46 * @param to The new entitlement subject condition class name.
48 void migratedSubjectCondition(String from, String to) { argument
49 subjectConditionMigration.put(from, to);
53 * Adds a migration from an old policy environment condition to a new entitlement environment condition.
56 * @param to The new entitlement environment condition class name.
58 void migratedEnvironmentCondition(String from, String to) { argument
59 environmentConditionMigration.put(from, to);
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/tools/bundles/
H A DSetupUtils.java6 * The contents of this file are subject to the terms
58 * @param fileName The path to the properties file.
77 * @param message The text message to prompt the user.
159 * @param value The string may contain variables which need to be replaced.
207 * Get the from files list and the to file list.
240 * @return The string to represent the current operating system.
268 * @param to The pattern of the destinated file.
269 * @param file The file to be transform.
273 public static String transformFileName(String from, String to, File file) { argument
274 return transformFileName(from, to, fil
287 transformFileName(String from, String to, File file, char wildCard) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/adapters/
H A DJavaBeanAdapter.java2 * The contents of this file are subject to the terms of the Common Development and
134 * Checks that the converter can convert the source type to the token attribute type.
149 java.lang.reflect.Type to = pt.getActualTypeArguments()[1];
150 if (!(isMatchingClassType(attributeType, to) || isMatchingArrayType(attributeType, to)) ||
153 " -> " + to.toString() + "). Expected " + beanFieldType.getName() + " -> " +
161 private boolean isMatchingClassType(Class<?> attributeType, java.lang.reflect.Type to) { argument
162 return !attributeType.isArray() && to instanceof Class && ((Class) to).isAssignableFrom(attributeType);
165 private boolean isMatchingArrayType(Class<?> attributeType, java.lang.reflect.Type to) { argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/
H A DSAMLClient.java6 * The contents of this file are subject to the terms
54 * to do Web and POST profile as specified by SAML specification. It
55 * also provides methods to get Assertions based on Artifacts.
61 * This private method is designed to do the SAML Single-Sign-On.
68 * redirecting to service <code>URL</code>
126 * This method is designed to do the SAML web-browser profile with
127 * Artifact. Once the browser (user) authenticated to OpenAM,
128 * it can call this method to complete the single sign on to the
129 * target host and be redirected to th
403 createSOAPReceiverUrl( com.sun.identity.saml.common.SAMLServiceManager.SOAPEntry destSite, String to) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/tools/bundles/
H A DSetupUtils.java6 * The contents of this file are subject to the terms
58 * @param fileName The path to the properties file.
77 * @param message The text message to prompt the user.
159 * @param value The string may contain variables which need to be replaced.
207 * Get the from files list and the to file list.
240 * @return The string to represent the current operating system.
268 * @param to The pattern of the destinated file.
269 * @param file The file to be transform.
273 public static String transformFileName(String from, String to, File file) { argument
274 return transformFileName(from, to, fil
287 transformFileName(String from, String to, File file, char wildCard) argument
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/adapters/
H A DJavaBeanAdapter.java2 * The contents of this file are subject to the terms of the Common Development and
133 * Checks that the converter can convert the source type to the token attribute type.
148 java.lang.reflect.Type to = pt.getActualTypeArguments()[1];
149 if (!(isMatchingClassType(attributeType, to) || isMatchingArrayType(attributeType, to)) ||
152 " -> " + to.toString() + "). Expected " + beanFieldType.getName() + " -> " +
160 private boolean isMatchingClassType(Class<?> attributeType, java.lang.reflect.Type to) { argument
161 return !attributeType.isArray() && to instanceof Class && ((Class) to).isAssignableFrom(attributeType);
164 private boolean isMatchingArrayType(Class<?> attributeType, java.lang.reflect.Type to) { argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/
H A DSAMLClient.java6 * The contents of this file are subject to the terms
54 * to do Web and POST profile as specified by SAML specification. It
55 * also provides methods to get Assertions based on Artifacts.
61 * This private method is designed to do the SAML Single-Sign-On.
68 * redirecting to service <code>URL</code>
126 * This method is designed to do the SAML web-browser profile with
127 * Artifact. Once the browser (user) authenticated to OpenAM,
128 * it can call this method to complete the single sign on to the
129 * target host and be redirected to th
403 createSOAPReceiverUrl( com.sun.identity.saml.common.SAMLServiceManager.SOAPEntry destSite, String to) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/server/
H A DDbHandler.java4 * The contents of this file are subject to the terms of the
60 * This class is also able to generate a ReplicationIterator that can be
61 * used to read all changes from a given ChangeNUmber.
68 // The msgQueue holds all the updates not yet saved to stable storage.
71 // Adding an update synchronously add the update to this list.
74 // and write them to the db.
79 // for pushing the changes to other replication server or to LDAP server
92 // The queue himark and lowmark in bytes, this is set to 100 times the
124 * Creates a new dbHandler associated to
651 getCount(ChangeNumber from, ChangeNumber to) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/server/
H A DDbHandler.java4 * The contents of this file are subject to the terms of the
60 * This class is also able to generate a ReplicationIterator that can be
61 * used to read all changes from a given ChangeNUmber.
68 // The msgQueue holds all the updates not yet saved to stable storage.
71 // Adding an update synchronously add the update to this list.
74 // and write them to the db.
79 // for pushing the changes to other replication server or to LDAP server
92 // The queue himark and lowmark in bytes, this is set to 100 times the
122 * Creates a new dbHandler associated to
651 getCount(ChangeNumber from, ChangeNumber to) argument
[all...]

Completed in 79 milliseconds

12345