Searched refs:matches (Results 1 - 25 of 490) sorted by relevance

1234567891011>>

/forgerock/opendj2/src/server/org/opends/server/admin/
H A DDefinitionResolver.java51 * the {@link #matches(AbstractManagedObjectDefinition)} method
62 * Determines whether or not the provided managed object definition matches
68 * definition matches this resolver's criteria.
70 boolean matches(AbstractManagedObjectDefinition<?, ?> d); method in interface:DefinitionResolver
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/
H A DDefinitionResolver.java52 * the {@link #matches(AbstractManagedObjectDefinition)} method
63 * Determines whether or not the provided managed object definition matches
69 * definition matches this resolver's criteria.
71 boolean matches(AbstractManagedObjectDefinition<?, ?> d); method in interface:DefinitionResolver
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/
H A DDefinitionResolver.java52 * the {@link #matches(AbstractManagedObjectDefinition)} method
63 * Determines whether or not the provided managed object definition matches
69 * definition matches this resolver's criteria.
71 boolean matches(AbstractManagedObjectDefinition<?, ?> d); method in interface:DefinitionResolver
/forgerock/opendj2-hg/src/server/org/opends/server/admin/
H A DDefinitionResolver.java51 * the {@link #matches(AbstractManagedObjectDefinition)} method
62 * Determines whether or not the provided managed object definition matches
68 * definition matches this resolver's criteria.
70 boolean matches(AbstractManagedObjectDefinition<?, ?> d); method in interface:DefinitionResolver
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/
H A DDefinitionResolver.java52 * the {@link #matches(AbstractManagedObjectDefinition)} method
63 * Determines whether or not the provided managed object definition matches
69 * definition matches this resolver's criteria.
71 boolean matches(AbstractManagedObjectDefinition<?, ?> d); method in interface:DefinitionResolver
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/
H A DDefinitionResolver.java51 * the {@link #matches(AbstractManagedObjectDefinition)} method
62 * Determines whether or not the provided managed object definition matches
68 * definition matches this resolver's criteria.
70 boolean matches(AbstractManagedObjectDefinition<?, ?> d); method in interface:DefinitionResolver
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/
H A DDefinitionResolver.java47 * the {@link #matches(AbstractManagedObjectDefinition)} method against each
57 * Determines whether or not the provided managed object definition matches
63 * definition matches this resolver's criteria.
65 boolean matches(AbstractManagedObjectDefinition<?, ?> d); method in interface:DefinitionResolver
/forgerock/opendj-b2.6/src/server/org/opends/server/core/networkgroups/
H A DConnectionCriteria.java56 public boolean matches(ClientConnection connection)
76 * A connection criteria which matches all connections.
85 public boolean matches(ClientConnection connection)
107 * Indicates whether or not the provided client connection matches
112 * @return <code>true</code> if the provided client connection matches
115 boolean matches(ClientConnection connection); method in interface:ConnectionCriteria
H A DANDConnectionCriteria.java42 * A connection criteria which matches connections if and only if all
72 public boolean matches(ClientConnection connection) method in class:ANDConnectionCriteria
76 if (!filter.matches(connection))
H A DIPConnectionCriteria.java43 * A connection criteria which matches connections coming from a allowed
78 public boolean matches(ClientConnection connection) method in class:IPConnectionCriteria
105 return matches(connection);
H A DProtocolConnectionCriteria.java43 * A connection criteria which matches connections which use a permitted
72 public boolean matches(ClientConnection connection) method in class:ProtocolConnectionCriteria
107 return matches(connection);
/forgerock/opendj2/src/server/org/opends/server/core/networkgroups/
H A DConnectionCriteria.java55 public boolean matches(ClientConnection connection)
75 * A connection criteria which matches all connections.
84 public boolean matches(ClientConnection connection)
106 * Indicates whether or not the provided client connection matches
111 * @return <code>true</code> if the provided client connection matches
114 boolean matches(ClientConnection connection); method in interface:ConnectionCriteria
H A DANDConnectionCriteria.java41 * A connection criteria which matches connections if and only if all
71 public boolean matches(ClientConnection connection) method in class:ANDConnectionCriteria
75 if (!filter.matches(connection))
H A DIPConnectionCriteria.java42 * A connection criteria which matches connections coming from a allowed
77 public boolean matches(ClientConnection connection) method in class:IPConnectionCriteria
104 return matches(connection);
H A DProtocolConnectionCriteria.java42 * A connection criteria which matches connections which use a permitted
71 public boolean matches(ClientConnection connection) method in class:ProtocolConnectionCriteria
106 return matches(connection);
/forgerock/opendj2.6.2/src/server/org/opends/server/core/networkgroups/
H A DConnectionCriteria.java56 public boolean matches(ClientConnection connection)
76 * A connection criteria which matches all connections.
85 public boolean matches(ClientConnection connection)
107 * Indicates whether or not the provided client connection matches
112 * @return <code>true</code> if the provided client connection matches
115 boolean matches(ClientConnection connection); method in interface:ConnectionCriteria
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/networkgroups/
H A DConnectionCriteria.java56 public boolean matches(ClientConnection connection)
76 * A connection criteria which matches all connections.
85 public boolean matches(ClientConnection connection)
107 * Indicates whether or not the provided client connection matches
112 * @return <code>true</code> if the provided client connection matches
115 boolean matches(ClientConnection connection); method in interface:ConnectionCriteria
/forgerock/opendj2-hg/src/server/org/opends/server/core/networkgroups/
H A DConnectionCriteria.java55 public boolean matches(ClientConnection connection)
75 * A connection criteria which matches all connections.
84 public boolean matches(ClientConnection connection)
106 * Indicates whether or not the provided client connection matches
111 * @return <code>true</code> if the provided client connection matches
114 boolean matches(ClientConnection connection); method in interface:ConnectionCriteria
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/workflow/
H A Dgetprocessesforuser.js48 matches,
54 matches = props.matches;
57 if (processDefinition[property].match(matches)) {
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java65 private final boolean matches; field in class:AuthenticationPolicyTestCase.MockPolicy
110 * @param matches
115 public MockPolicy(boolean matches, boolean isDisabled) argument
117 this.matches = matches;
149 return matches;
231 /* password matches, account is disabled */
245 * @param matches
253 public void testSimpleBind(boolean matches, boolean isDisabled) argument
256 MockPolicy policy = new MockPolicy(matches, isDisable
323 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java64 private final boolean matches; field in class:AuthenticationPolicyTestCase.MockPolicy
109 * @param matches
114 public MockPolicy(boolean matches, boolean isDisabled) argument
116 this.matches = matches;
148 return matches;
230 /* password matches, account is disabled */
244 * @param matches
252 public void testSimpleBind(boolean matches, boolean isDisabled) argument
255 MockPolicy policy = new MockPolicy(matches, isDisable
322 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java65 private final boolean matches; field in class:AuthenticationPolicyTestCase.MockPolicy
110 * @param matches
115 public MockPolicy(boolean matches, boolean isDisabled) argument
117 this.matches = matches;
149 return matches;
231 /* password matches, account is disabled */
245 * @param matches
253 public void testSimpleBind(boolean matches, boolean isDisabled) argument
256 MockPolicy policy = new MockPolicy(matches, isDisable
323 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java64 private final boolean matches; field in class:AuthenticationPolicyTestCase.MockPolicy
109 * @param matches
114 public MockPolicy(boolean matches, boolean isDisabled) argument
116 this.matches = matches;
148 return matches;
230 /* password matches, account is disabled */
244 * @param matches
252 public void testSimpleBind(boolean matches, boolean isDisabled) argument
255 MockPolicy policy = new MockPolicy(matches, isDisable
322 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java65 private final boolean matches; field in class:AuthenticationPolicyTestCase.MockPolicy
110 * @param matches
115 public MockPolicy(boolean matches, boolean isDisabled) argument
117 this.matches = matches;
149 return matches;
231 /* password matches, account is disabled */
245 * @param matches
253 public void testSimpleBind(boolean matches, boolean isDisabled) argument
256 MockPolicy policy = new MockPolicy(matches, isDisable
323 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java61 private final boolean matches; field in class:AuthenticationPolicyTestCase.MockPolicy
106 * @param matches
111 public MockPolicy(boolean matches, boolean isDisabled) argument
113 this.matches = matches;
139 return matches;
213 /* password matches, account is disabled */
227 * @param matches
235 public void testSimpleBind(boolean matches, boolean isDisabled) argument
238 MockPolicy policy = new MockPolicy(matches, isDisable
305 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]

Completed in 389 milliseconds

1234567891011>>