Searched defs:result (Results 101 - 125 of 458) sorted by relevance

1234567891011>>

/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/schema/
H A DOrderingMatchingRuleTest.java56 public void OrderingMatchingRules(String value1,String value2, int result) argument
71 if (result == 0)
79 else if (result > 0)
H A DSubstringMatchingRuleTest.java82 String value, String[] middleSubs, Boolean result) throws Exception
104 if (result != liveResult)
107 " does not give expected result (" + result + ") for values : " +
117 String value, String initial, Boolean result) throws Exception
129 if (result != liveResult)
132 " does not give expected result (" + result + ") for values : " +
135 assertEquals(result, liveResult);
143 String value, String finalValue, Boolean result) throw
81 middleMatchingRules( String value, String[] middleSubs, Boolean result) argument
116 initialMatchingRules( String value, String initial, Boolean result) argument
142 finalMatchingRules( String value, String finalValue, Boolean result) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/messages/
H A DMessageBuilderTest.java158 public void testToMessage(CharSequence[] content, String result) argument
165 assertTrue(result.equals(m.toString()));
193 public void testToMessage1(CharSequence[] content, Locale locale, String result) argument
200 assertTrue(result.equals(m.toString(locale)));
H A DMessageTest.java72 public void testRaw(String fmt, String result, Object... args) { argument
76 assertTrue(mStr.equals(result));
79 assertTrue(mStrL.equals(result));
84 String result, Object... args) {
86 assertTrue(message.toString().equals(result));
87 assertTrue(message.toString(TEST_LOCALE).equals(result));
133 String result, Object... args) {
83 testRaw1(String fmt, Category c, Severity s, String result, Object... args) argument
132 testGetDescriptor(String fmt, Category c, Severity s, String result, Object... args) argument
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/messages/
H A DMessageBuilderTest.java159 public void testToMessage(CharSequence[] content, String result) argument
166 assertTrue(result.equals(m.toString()));
194 public void testToMessage1(CharSequence[] content, Locale locale, String result) argument
201 assertTrue(result.equals(m.toString(locale)));
H A DMessageTest.java73 public void testRaw(String fmt, String result, Object... args) { argument
77 assertTrue(mStr.equals(result));
80 assertTrue(mStrL.equals(result));
85 String result, Object... args) {
87 assertTrue(message.toString().equals(result));
88 assertTrue(message.toString(TEST_LOCALE).equals(result));
134 String result, Object... args) {
84 testRaw1(String fmt, Category c, Severity s, String result, Object... args) argument
133 testGetDescriptor(String fmt, Category c, Severity s, String result, Object... args) argument
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/schema/
H A DEqualityMatchingRuleTest.java74 String value2, Boolean result) throws Exception
85 assertEquals(result, liveResult);
105 String value1, String value2, Boolean result)
112 equalityMatchingRules(value1, value2, result);
161 String value2, Boolean result) throws Exception
173 if (result == true)
73 equalityMatchingRules(String value1, String value2, Boolean result) argument
104 warnmodeEqualityMatchingRules( String value1, String value2, Boolean result) argument
160 testValuesMatch(String value1, String value2, Boolean result) argument
H A DOrderingMatchingRuleTest.java57 public void OrderingMatchingRules(String value1,String value2, int result) argument
72 if (result == 0)
80 else if (result > 0)
H A DSubstringMatchingRuleTest.java83 String value, String[] middleSubs, Boolean result) throws Exception
105 if (result != liveResult)
108 " does not give expected result (" + result + ") for values : " +
118 String value, String initial, Boolean result) throws Exception
130 if (result != liveResult)
133 " does not give expected result (" + result + ") for values : " +
136 assertEquals(result, liveResult);
144 String value, String finalValue, Boolean result) throw
82 middleMatchingRules( String value, String[] middleSubs, Boolean result) argument
117 initialMatchingRules( String value, String initial, Boolean result) argument
143 finalMatchingRules( String value, String finalValue, Boolean result) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/audit/
H A DAuthenticationModuleEventAuditor.java106 Status result, AuthenticationAuditEntry auditEntryDetail) {
117 .result(result)
105 auditModuleEvent(LoginState loginState, String realm, String principal, String userId, Status result, AuthenticationAuditEntry auditEntryDetail) argument
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/impl/queue/
H A DAsyncResultHandler.java37 * The processed result is placed on the queue when available. At which point either
38 * the caller is already waiting, or can begin to wait for the result. The queue
88 throw new CoreTokenException("Timed out whilst waiting for result");
115 * @param result The result to store in this ResultHandler. May be null.
119 public void processResults(T result) { argument
120 debug("Received: results: {0}", result == null ? "<null>" : result.toString());
121 Object addition = result == null ? NULL_SIGNAL : result;
[all...]
/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DHttpURLConnectionWrapper.java31 * Class which encapsulates the result of the HttpURLConnection invocation. The status code will specify the Http response
32 * code, and the result will contain the contents of the response, from either the input stream, or the error stream,
37 private String result; field in class:HttpURLConnectionWrapper.ConnectionResult
39 ConnectionResult(int statusCode, String result) { argument
41 this.result = result;
49 return result;
/forgerock/openidm-v4/openidm-smartevent/src/main/java/org/forgerock/openidm/smartevent/core/
H A DDisabledPublisher.java46 public final void setResult(Object result, EventEntry delegate) { argument
H A DDisruptorShortEventEntry.java45 Object result; field in class:DisruptorShortEventEntry
75 public final void setResult(Object result) { argument
76 this.result = result;
102 + " payload: " + payload + " context: " + context + " result: " + result;
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/schema/
H A DAuthPasswordEqualityMatchingRuleTest.java118 public void testValuesMatch(String value1, String value2, Boolean result) throws Exception argument
128 assertEquals(liveResult, ConditionResult.valueOf(result));
H A DEqualityMatchingRuleTest.java86 String value1, String value2, Boolean result)
93 testValuesMatch(value1, value2, result);
138 String value2, Boolean result) throws Exception
148 assertEquals(liveResult, ConditionResult.valueOf(result));
85 warnmodeEqualityMatchingRules( String value1, String value2, Boolean result) argument
137 testValuesMatch(String value1, String value2, Boolean result) argument
H A DUserPasswordEqualityMatchingRuleTest.java114 public void testValuesMatch(String value1, String value2, Boolean result) throws Exception argument
122 assertEquals(liveResult, ConditionResult.valueOf(result));
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/audit/
H A DAuthenticationModuleEventAuditor.java100 Status result, AuthenticationAuditEntry auditEntryDetail) {
111 .result(result)
99 auditModuleEvent(LoginState loginState, String realm, String principal, String userId, Status result, AuthenticationAuditEntry auditEntryDetail) argument
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/impl/queue/
H A DAsyncResultHandler.java37 * The processed result is placed on the queue when available. At which point either
38 * the caller is already waiting, or can begin to wait for the result. The queue
88 throw new CoreTokenException("Timed out whilst waiting for result");
115 * @param result The result to store in this ResultHandler. May be null.
119 public void processResults(T result) { argument
120 debug("Received: results: {0}", result == null ? "<null>" : result.toString());
121 Object addition = result == null ? NULL_SIGNAL : result;
[all...]
/forgerock/openam/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DHttpURLConnectionWrapper.java31 * Class which encapsulates the result of the HttpURLConnection invocation. The status code will specify the Http response
32 * code, and the result will contain the contents of the response, from either the input stream, or the error stream,
37 private String result; field in class:HttpURLConnectionWrapper.ConnectionResult
39 ConnectionResult(int statusCode, String result) { argument
41 this.result = result;
49 return result;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/tools/manifest/
H A DFilesDigester.java258 * This function append the result to the StringBuffer.
260 * @param result The properties to store the results.
262 * @param digestedbyte The byte array which contains the digested result.
265 protected void appendResult(Properties result, String path, argument
267 result.setProperty(path, Utils.translateHashToString(digestedbyte));
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/impl/
H A DLdapAdapter.java89 * Performs a read against the LDAP connection and converts the result into a Token.
101 Result result = e.getResult();
103 if (result != null && ResultCode.NO_SUCH_OBJECT.equals(result.getResultCode())) {
106 throw new LdapOperationFailedException(result);
155 Result result = e.getResult();
157 if (e.getResult() != null && ResultCode.NO_SUCH_OBJECT.equals(result.getResultCode())) {
188 * Verify if the result was successful.
189 * @param result Non null.
190 * @throws org.forgerock.openam.sm.datalayer.api.LdapOperationFailedException Thrown if the result wa
192 processResult(Result result) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DResponseImpl.java149 * @param result the <code>Result</code> to add
152 public void addResult(Result result) throws XACMLException { argument
160 results.add(result);
200 Result result = (Result)results.get(i);
201 sb.append(result.toXMLString(includeNSPrefix, false));
229 Result result = (Result)results.get(i);
230 result.makeImmutable();
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/authz/
H A DPrivilegeWriteAndAnyPrivilegeReadOnlyAuthzModule.java97 AuthorizationResult result) throws ResourceException {
98 Promise<AuthorizationResult, ResourceException> resultPromise = newResultPromise(result);
99 return result.isAuthorized() ? resultPromise : anyPrivilegeAuthzModule.evaluate(context, READ);
96 apply( AuthorizationResult result) argument
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DCumulativeValResult.java38 * Class to store the cumulative result from validators.
61 void setCumValResult(boolean result) { argument
62 cumValResStat = result;

Completed in 142 milliseconds

1234567891011>>