Searched defs:message (Results 476 - 500 of 1477) sorted by relevance

<<11121314151617181920>>

/forgerock/openam-v13/openam-sts/openam-soap-sts/openam-soap-sts-server/src/main/java/org/forgerock/openam/sts/soap/policy/am/
H A DOpenAMSessionTokenServerInterceptor.java35 import org.apache.ws.security.message.token.BinarySecurity;
75 * @param message The message encapsulating the soap invocation.
79 protected void processToken(SoapMessage message) throws Fault { argument
80 Header header = findSecurityHeader(message, false);
93 List<WSHandlerResult> results = CastUtils.cast((List<?>) message
97 message.put(WSHandlerConstants.RECV_RESULTS, results);
102 assertTokens(message);
106 message.put(WSS4JInInterceptor.PRINCIPAL_RESULT, principal);
108 SecurityContext sc = message
155 addToken(SoapMessage message) argument
173 assertTokens(SoapMessage message) argument
[all...]
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DTaskExecutionResult.java35 public TaskExecutionResult(boolean success, LocalizedMessage message) { argument
37 setMessage(message);
45 return message;
52 private void setMessage(LocalizedMessage message) { argument
53 this.message = message;
58 private LocalizedMessage message; field in class:TaskExecutionResult
H A DValidationResult.java38 LocalizedMessage message) {
41 setMessage(message);
45 return message;
56 private void setMessage(LocalizedMessage message) { argument
57 this.message = message;
72 private LocalizedMessage message; field in class:ValidationResult
37 ValidationResult(ValidationResultStatus status, Map data, LocalizedMessage message) argument
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/logs/
H A DInstallLog.java36 public static void log(LocalizedMessage message) { argument
37 LOGGER.log(message);
H A DUninstallLog.java36 public static void log(LocalizedMessage message) { argument
37 LOGGER.log(message);
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/utils/
H A DNotificationFactory.java45 * @param message Non null body of the notification.
49 public Notification generatePending(Context context, int requestCode, String title, String message, Intent intent) { argument
55 .setContentText(message)
/forgerock/jee-agents-v3.5/jee-agents-jetty/jee-agents-jetty-v7/src/main/java/org/forgerock/agents/jetty/v7/
H A DAgentCredential.java78 private void logMessage(String message) { argument
81 moduleAccess.logMessage(message);
H A DAgentLoginModule.java89 private void logMessage(String message) { argument
92 moduleAccess.logMessage(message);
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/filter/
H A DIWebServiceAuthenticator.java40 public SSOToken getUserToken(HttpServletRequest request, String message, argument
/forgerock/openam-v13/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DSMSGateway.java39 * Sends a SMS message to the phone with the code
42 * @param from The address that sends the SMS message
43 * @param to The address that the SMS message is sent
45 * @param message The content contained in the SMS message
46 * @param code The code in the SMS message
52 String message, String code, Map options) throws AuthLoginException;
55 * Sends an email message to the mail with the code
58 * @param from The address that sends the E-mail message
59 * @param to The address that the E-mail message i
51 sendSMSMessage(String from, String to, String subject, String message, String code, Map options) argument
67 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.java32 * Sends an email message to the mail with the code
35 * @param from The address that sends the E-mail message
36 * @param to The address that the E-mail message is sent
38 * @param message The content contained in the E-mail message
43 String message, Map<String, String> options)
42 sendEmail(String from, String to, String subject, String message, Map<String, String> options) argument
H A DOAuthProxy.java148 private static String getError(String message) { argument
151 .append("<h1>\n").append(message).append("</h1>\n")
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DCLIException.java48 * @param message Exception message.
52 public CLIException(String message, int exitCode, String subcommandName) { argument
53 super(message);
61 * @param message Exception message.
64 public CLIException(String message, int exitCode) { argument
65 super(message);
112 * Returns localized message.
115 * @return localized message
[all...]
H A DDebugger.java37 * This class is responsible for printing debug message to standard output
50 * evaluates arguments to <code>message()</code> even when
55 * before invoking any <code>message()</code> methods to avoid
59 * @param msg debug message.
60 * @see com.sun.identity.shared.debug.Debug#message(String, Throwable)
62 public static void message(CommandManager mgr, String msg) { method in class:Debugger
64 mgr.getDebugger().message(msg);
70 * accessible and debugging is enabled, the message along with a time stamp
84 * Java evaluates arguments to <code>message()</code> even when
87 * <code>message()</cod
100 public static void message(CommandManager mgr, String msg, Throwable t) { method in class:Debugger
[all...]
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/
H A DJSONNotification.java64 private final String message; field in class:JSONNotification.Type
66 Type(String message) { argument
67 this.message = message;
71 return message;
H A DValidateResourceResult.java38 * valid or invalid; and also a message.
46 private String message; field in class:ValidateResourceResult
54 * @param message Message.
56 public ValidateResourceResult(int validCode, String message) { argument
58 this.message = message;
65 * @param message Message.
66 * @param args Arguments for the message.
68 public ValidateResourceResult(int validCode, String message, Object ... args){ argument
70 this.message
[all...]
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/liberty/ws/authnsvc/mechanism/
H A DSSOTokenMechanismHandler.java59 * @param message a SOAP Message containing the SASL request
65 Message message, String respMessageID) {
68 AuthnSvcUtils.debug.message(
77 AuthnSvcUtils.debug.message(
105 saslResp = authenticate(dataStr, message);
116 private SASLResponse authenticate(String data, Message message) { argument
120 AuthnSvcUtils.debug.message(
133 saslResp, message, userDN)) {
64 processSASLRequest(SASLRequest saslReq, Message message, String respMessageID) argument
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/workflow/
H A DWorkflowException.java44 private String message; field in class:WorkflowException
51 * This constructor is used to pass the localized error message
53 * not possible to throw localized error message at this level.
60 * @param args arguments to message. If it is not present pass the
67 this.message = getL10NMessage(Locale.getDefault());
71 * Constructs a <code>WorkflowException</code> with a detailed message.
73 * @param message Exception Message.
74 * Detailed message for this exception.
76 public WorkflowException(String message) { argument
77 super(message);
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Common/
H A DFedletLogger.cs84 /// Method to write an error message to the event log.
86 /// <param name="message">Message to be written.</param>
87 public static void Error(string message) argument
89 FedletLogger.LogMessage(message, EventLogEntryType.Error);
93 /// Method to write an information message to the event log.
95 /// <param name="message">Message to be written.</param>
96 public static void Info(string message) argument
98 FedletLogger.LogMessage(message, EventLogEntryType.Information);
102 /// Method to write a warning message to the event log.
104 /// <param name="message">Messag
105 Warning(string message) argument
120 LogMessage(string message, EventLogEntryType entryType) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/common/
H A DSystemConfigurationException.java49 * @param args arguments to message. If it is not present pass them
61 * localized error message.
67 * @param args arguments to message. If it is not present pass them
79 * given message.
81 * @param message message for this exception. This message can be later
85 public SystemConfigurationException(String message) { argument
86 super(message);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSAssertionArtifact.java29 package com.sun.identity.federation.message;
32 import com.sun.identity.federation.message.common.FSMsgException;
91 FSUtils.debug.message("FSAssertionArtifact: empty input.");
99 FSUtils.debug.message("FSAssertionArtifact: decode error");
107 FSUtils.debug.message("FSAssertionArtifact: the length is"
116 FSUtils.debug.message("FSAssertionArtifact: wrong typecode.");
143 FSUtils.debug.message("FSAssertionArtifact: null input.");
149 FSUtils.debug.message("FSAssertionArtifact: wrong input length.");
165 FSUtils.debug.message("FSAssertionArtifact: exception encode"
H A DFSSAMLRequest.java29 package com.sun.identity.federation.message;
54 * object from a Document Element and to create Request message
79 SAMLUtils.debug.message("FSSAMLRequest(Element): null input.");
85 SAMLUtils.debug.message("FSSAMLRequest(Element): wrong input");
111 SAMLUtils.debug.message("FSSAMLRequest(Element): couldn't"
119 SAMLUtils.debug.message("FSSAMLRequest(Element): included more "
130 SAMLUtils.debug.message("FSSAMLRequest(Element): Request "
141 SAMLUtils.debug.message("FSSAMLRequest(Element): "
150 SAMLUtils.debug.message(
170 SAMLUtils.debug.message("FSSAMLReques
[all...]
H A DFSSubject.java30 package com.sun.identity.federation.message;
34 import com.sun.identity.federation.message.common.FSMsgException;
35 import com.sun.identity.federation.message.common.IDPProvidedNameIdentifier;
108 FSUtils.debug.message("FSSubject(Element): Called");
114 FSUtils.debug.message("FSSubject: local name missing");
120 FSUtils.debug.message("FSSubject: invalid root element");
128 FSUtils.debug.message("FSSubject: No sub elements found");
150 FSUtils.debug.message("FSSubject: Invalid element "
158 FSUtils.debug.message("FSSubject: more than allowed elements "
163 FSUtils.debug.message("FSSubjec
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DEntityName.java29 package com.sun.identity.federation.message.common;
H A DFSMsgException.java29 package com.sun.identity.federation.message.common;
45 * @param errorCode Key of the error message in resource bundle.
46 * @param args Arguments to the message.
55 * @param errorCode Key of the error message in resource bundle.
56 * @param args Arguments to the message.
67 * @param s the exception message.
76 * @param s the exception message.

Completed in 190 milliseconds

<<11121314151617181920>>