Searched defs:message (Results 501 - 525 of 1477) sorted by relevance

<<21222324252627282930>>

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DGetComplete.java29 package com.sun.identity.federation.message.common;
87 FSUtils.debug.message("GetComplete(Element): null input.");
92 FSUtils.debug.message("GetComplete(Element): wrong input");
109 FSUtils.debug.message("GetComplete(Element): should"
117 FSUtils.debug.message("GetComplete(Element): invalid"
137 FSUtils.debug.message("GetComplete.parseXML:Error "
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/meta/
H A DIDFFMetaException.java41 * message.
43 * @param message detailed message for this exception.
45 public IDFFMetaException(String message) { argument
46 super(message);
77 * @param args arguments to the message.
88 * localized error message.
94 * @param args arguments to the message.
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/authnsvc/
H A DAuthnSvcRequestHandlerImpl.java56 AuthnSvcUtils.debug.message(
83 Message message = new Message();
84 String respMessageID = message.getCorrelationHeader().getMessageID();
87 message.setSOAPBody(saslResp.toElement());
88 return message;
94 * @param message a SOAP Message containing a SASL response
102 Message message,
110 message.getCorrelationHeader().getMessageID() + ", " +
116 AuthnSvcUtils.debug.message(msg);
120 String[] data = { message
101 processSASLRequest(SASLRequest saslReq, Message message, String respMessageID) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/authnsvc/mechanism/
H A DMechanismHandler.java49 * @param message a SOAP Message containing the SASL request
55 Message message, String respMessageID);
54 processSASLRequest(SASLRequest saslReq, Message message, String respMessageID) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/plugins/
H A DDefault64ResourceIDMapper.java107 * @param message Request message.
112 Message message)
119 debug.message("Default64ResourceIDMapper.getUserID: used "
122 if (message == null) {
123 debug.error("Default64ResourceIDMapper.getUserID:null message");
126 SecurityAssertion assertion = message.getAssertion();
110 getUserID(String providerID, String resourceID, Message message) argument
H A DDefaultHexResourceIDMapper.java97 * @param message Request message.
102 Message message)
108 debug.message("DefaultHexResourceIDMapper.getUserID: used "
111 if (message == null) {
113 "DefaultHexResourceIDMapper.getUserID:null message");
116 SecurityAssertion assertion = message.getAssertion();
100 getUserID(String providerID, String resourceID, Message message) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/idpp/plugin/
H A DIDPPResourceIDMapper.java98 * @param message Message of soapbinding
103 Message message) {
102 getUserID(String providerID, String resourceID, Message message) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/server/changelog/api/
H A DAbortedChangelogCursorException.java45 * Creates a new exception with the provided message.
47 * @param message
48 * The message that explains the problem that occurred.
50 public AbortedChangelogCursorException(LocalizableMessage message) argument
52 super(message);
67 * Creates a new exception with the provided message and cause.
69 * @param message
70 * The message that explains the problem that occurred.
74 public AbortedChangelogCursorException(LocalizableMessage message, Throwable cause) argument
76 super(message, caus
[all...]
H A DChangelogException.java45 * @param message
46 * The message that explains the problem that occurred.
48 public ChangelogException(LocalizableMessage message) argument
50 super(message);
67 * @param message
68 * The message that explains the problem that occurred.
72 public ChangelogException(LocalizableMessage message, Throwable cause) argument
74 super(message, cause);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/server/changelog/file/
H A DDecodingException.java41 * @param message
42 * The message that explains the problem that occurred.
44 public DecodingException(LocalizableMessage message) argument
46 super(message);
63 * @param message
64 * The message that explains the problem that occurred.
68 public DecodingException(LocalizableMessage message, Throwable cause) argument
70 super(message, cause);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/
H A DLDAPConnectionException.java65 * The server-provided error message for this exception.
71 * Creates a new exception with the provided message.
73 * @param message The message to use for this exception.
75 public LDAPConnectionException(LocalizableMessage message) argument
77 super(message);
86 * Creates a new exception with the provided message.
88 * @param message The message to use for this exception.
90 * @param errorMessage The server-provided error message fo
92 LDAPConnectionException(LocalizableMessage message, int resultCode, LocalizableMessage errorMessage) argument
112 LDAPConnectionException(LocalizableMessage message, Throwable cause) argument
132 LDAPConnectionException(LocalizableMessage message, int resultCode, LocalizableMessage errorMessage, Throwable cause) argument
156 LDAPConnectionException(LocalizableMessage message, int resultCode, LocalizableMessage errorMessage, DN matchedDN, Throwable cause) argument
[all...]
H A DLDAPWriter.java76 * Writes an LDAP message to the associated output stream.
78 * @param message The message to be written.
83 public void writeMessage(LDAPMessage message) argument
88 logger.trace(message.toString());
92 message.write(asn1Writer);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/dsreplication/
H A DReplicationCliException.java43 * @param message the localized message.
47 public ReplicationCliException(LocalizableMessage message, argument
51 super(message, cause);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/upgrade/
H A DFormattedNotificationCallback.java48 /** Output a notice message. */
55 * An integer representing the message's sub-type.
62 * @param message
63 * The message to display
65 * An integer representing the sub-type of this message.
67 FormattedNotificationCallback(final LocalizableMessage message, argument
70 super(TextOutputCallback.INFORMATION, message.toString());
75 * Returns an integer which represents the message's sub-type.
77 * @return An integer which represents the message's sub-type.
H A DProgressNotificationCallback.java51 * The type of the message, usually INFORMATION.
52 * @param message
53 * The message to display
58 final LocalizableMessage message, final int progress)
60 super(messageType, message.toString());
57 ProgressNotificationCallback(final int messageType, final LocalizableMessage message, final int progress) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DLDAPException.java63 /** The server-provided error message for this LDAP exception. */
69 * Creates a new LDAP exception with the provided message.
73 * @param message The message that explains the problem that
76 public LDAPException(int resultCode, LocalizableMessage message) argument
78 super(message);
89 * Creates a new LDAP exception with the provided message.
93 * @param errorMessage The server-provided error message.
94 * @param message The message tha
97 LDAPException(int resultCode, LocalizableMessage errorMessage, LocalizableMessage message) argument
121 LDAPException(int resultCode, LocalizableMessage message, Throwable cause) argument
146 LDAPException(int resultCode, LocalizableMessage errorMessage, LocalizableMessage message, Throwable cause) argument
172 LDAPException(int resultCode, LocalizableMessage errorMessage, LocalizableMessage message, DN matchedDN, Throwable cause) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/
H A DLDIFException.java73 * @param message The message to use for this LDIF exception.
75 public LDIFException(LocalizableMessage message) argument
77 super(message);
89 * @param message The message to use for this LDIF exception.
92 public LDIFException(LocalizableMessage message, Throwable cause) argument
94 super(message, cause);
106 * @param message The message t
112 LDIFException(LocalizableMessage message, Number lineNumber, boolean canContinueReading) argument
135 LDIFException(LocalizableMessage message, Number lineNumber, boolean canContinueReading, Throwable cause) argument
[all...]
/forgerock/openam-v13/openam-tools/openam-license-manager-cli/src/main/java/org/forgerock/openam/license/
H A DUser.java28 * Displays the given message to the user, localised to their language/locale.
30 * @param messageId the id of the localised message to display.
35 * Directly shows a non-localised (or already localised) message to the user.
37 * @param message the message to display verbatim.
39 void show(String message); argument
44 * @param questionId the message id of a question to ask the user.
57 * Get a localised message for display to this user.
58 * @param messageId the id of the message to get.
59 * @return the localised message
[all...]
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaEmailService.java55 * @param message The body of the email
58 public void email(String realm, String to, String subject, String message) throws MessagingException { argument
59 Reject.ifNull(realm, to, subject, message);
65 getMailServer(realm).sendHtmlEmail(emailAddress, subject, message);
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/server/
H A DConstraintViolationException.java55 /** Gets the default message. */
67 /** Merge the messages into a single message. */
108 * Creates a new constraint violation exception with the provided message.
113 * @param message
114 * The message describing the constraint violation that occurred.
116 public ConstraintViolationException(ServerManagedObject<?> managedObject, LocalizableMessage message) { argument
117 this(managedObject, Collections.singleton(message));
132 * Creates a single message listing all the messages combined into a single
135 * @return Returns a single message listing all the messages combined into a
/forgerock/openidm-v4/openidm-repo-orientdb/src/main/java/org/forgerock/openidm/repo/orientdb/impl/query/
H A DPrepareNotSupported.java37 * Constructs a new exception with {@code null} as its detail message.
43 * Constructs a new exception with the specified detail message.
45 public PrepareNotSupported(String message) { argument
46 super(message);
57 * Constructs a new exception with the specified detail message and cause.
59 public PrepareNotSupported(String message, Throwable cause) { argument
60 super(message, cause);
/forgerock/openidm-v4/openidm-util/src/main/java/org/forgerock/openidm/audit/util/
H A DActivityLogger.java43 * @param message the message to log with this request
50 void log(Context context, Request request, String message, String objectId, argument
H A DNullActivityLogger.java44 public void log(Context context, Request request, String message, String objectId, argument
H A DOpenIDMActivityAuditEventBuilder.java28 public static final String MESSAGE = "message";
41 public T message(String message) { argument
42 jsonValue.put(MESSAGE, message);
/forgerock/openidm-v4/openidm-audit/src/test/java/org/forgerock/openidm/audit/events/handlers/impl/
H A DPassThroughAuditEventHandlerConfiguration.java26 @JsonProperty("message")
27 private String message; field in class:PassThroughAuditEventHandlerConfiguration
30 * Returns the message.
32 * @return the message
35 return message;
39 * Sets the message.
41 * @param message the message
43 public void setMessage(String message) { argument
44 this.message
[all...]

Completed in 217 milliseconds

<<21222324252627282930>>