Searched defs:match (Results 1 - 25 of 133) sorted by relevance

123456

/forgerock/openam-v13/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DAllOf.java67 "match"
72 protected List<Match> match; field in class:AllOf
75 * Gets the value of the match property.
81 * This is why there is not a <CODE>set</CODE> method for the match property.
97 if (match == null) {
98 match = new ArrayList<Match>();
100 return this.match;
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/common/
H A DIPatternMatcher.java38 public abstract boolean match(String str); method in interface:IPatternMatcher
H A DPatternMatcher.java60 public boolean match(String str) { method in class:PatternMatcher
70 logMessage("PatternMatcher.match(" + str + "): matched "
H A DURLPatternMatcher.java75 * match against notenforced URLs/URIs
79 public boolean match(String requestedURL) { method in class:URLPatternMatcher
103 logMessage("URLPatternMatcher.match(" +
114 logMessage("URLPatternMatcher.match(" +
124 logWarning("URLPatternMatcher.match(" +
/forgerock/openam-v13/openam-core/src/test/java/com/sun/identity/idm/
H A DIdRepoExceptionTest.java28 { "should match fully", "should match fully" },
37 public void testRegex(String match, String result) { argument
40 Object[] args = { null, null, match };
/forgerock/openam/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DAllOf.java67 "match"
72 protected List<Match> match; field in class:AllOf
75 * Gets the value of the match property.
81 * This is why there is not a <CODE>set</CODE> method for the match property.
97 if (match == null) {
98 match = new ArrayList<Match>();
100 return this.match;
/forgerock/openam/openam-core/src/test/java/com/sun/identity/idm/
H A DIdRepoExceptionTest.java28 { "should match fully", "should match fully" },
37 public void testRegex(String match, String result) { argument
40 Object[] args = { null, null, match };
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DMatchingResourcePath.java24 * A wrapper around {@link ResourcePath} that will be equal to another path if their paths match.
33 * If the path element is a {@code *}, then any value in that element of the other will match.
53 public static MatchingResourcePath match(ResourcePath path) { method in class:MatchingResourcePath
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/whitelist/
H A DURLPatternMatcher.java58 * @param patterns The patterns to match the URL against.
63 public boolean match(String requestedURL, Collection<String> patterns, boolean wildcard) method in class:URLPatternMatcher
79 DEBUG.message("URLPatternMatcher.match(" + requestedURL + "): matching by pattern: " + pattern);
86 DEBUG.message("URLPatternMatcher.match(" + requestedURL + "): matched by pattern: " + pattern
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DMatchingResourcePath.java24 * A wrapper around {@link ResourcePath} that will be equal to another path if their paths match.
33 * If the path element is a {@code *}, then any value in that element of the other will match.
53 public static MatchingResourcePath match(ResourcePath path) { method in class:MatchingResourcePath
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/whitelist/
H A DURLPatternMatcher.java58 * @param patterns The patterns to match the URL against.
63 public boolean match(String requestedURL, Collection<String> patterns, boolean wildcard) method in class:URLPatternMatcher
83 DEBUG.message("URLPatternMatcher.match(" + requestedURL + "): matching by pattern: " + pattern);
90 DEBUG.message("URLPatternMatcher.match(" + requestedURL + "): matched by pattern: " + pattern
/forgerock/openam-v13/openam-shared/src/test/java/org/forgerock/openam/shared/resourcename/
H A DBaseURLResourceNameTest.java32 match(WILDCARD_MATCH, "http://example.com:80/fred/index.html", "http*://*example.com:*/fred/*", true);
33 match(WILDCARD_MATCH, "http://www.example.com:80/fred/index.html", "http*://*example.com:*/fred/*", true);
34 match(WILDCARD_MATCH, "http://www.google.com:80/asdf/hello/blah/wibble/asdf/blah",
36 match(WILDCARD_MATCH, "http://www.google.com.net", "http://www.google.com*", true);
37 match(WILDCARD_MATCH, "http://www.google.com:80/", "http://www.google.com:*", true);
38 match(WILDCARD_MATCH, "http://www.google.com.co.uk", "http://www.google.com*", true);
39 match(WILDCARD_MATCH, "http://www.google.com.co.uk:80", "http://www.google.com*", true);
40 match(WILDCARD_MATCH, "http://www.google.com.co.uk:80/", "http://www.google.com*", true);
41 match(WILDCARD_MATCH, "http://www.google.com.co.uk:80/blah", "http://www.google.com*", true);
42 match(WILDCARD_MATC
88 private void match(ResourceMatch expected, String requestResource, String targetResource, boolean wildcard) { method in class:BaseURLResourceNameTest
[all...]
/forgerock/openidm-v4/openidm-provisioner-openicf/src/main/java/org/forgerock/openidm/provisioner/openicf/internal/
H A DSystemAction.java73 if (action.match(systemType)) {
102 public boolean match(String systemTypeName) { method in class:SystemAction.SystemTypeAction
/forgerock/openam/openam-shared/src/test/java/org/forgerock/openam/shared/resourcename/
H A DBaseURLResourceNameTest.java32 match(WILDCARD_MATCH, "http://example.com:80/fred/index.html", "http*://*example.com:*/fred/*", true);
33 match(WILDCARD_MATCH, "http://www.example.com:80/fred/index.html", "http*://*example.com:*/fred/*", true);
34 match(WILDCARD_MATCH, "http://www.google.com:80/asdf/hello/blah/wibble/asdf/blah",
36 match(WILDCARD_MATCH, "http://www.google.com.net", "http://www.google.com*", true);
37 match(WILDCARD_MATCH, "http://www.google.com:80/", "http://www.google.com:*", true);
38 match(WILDCARD_MATCH, "http://www.google.com.co.uk", "http://www.google.com*", true);
39 match(WILDCARD_MATCH, "http://www.google.com.co.uk:80", "http://www.google.com*", true);
40 match(WILDCARD_MATCH, "http://www.google.com.co.uk:80/", "http://www.google.com*", true);
41 match(WILDCARD_MATCH, "http://www.google.com.co.uk:80/blah", "http://www.google.com*", true);
42 match(WILDCARD_MATC
88 private void match(ResourceMatch expected, String requestResource, String targetResource, boolean wildcard) { method in class:BaseURLResourceNameTest
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java155 // Rule to not match
215 assertTrue(match(rules, addrs, hostNames));
222 assertTrue(match(rules, addrs, hostNames));
229 assertFalse(match(rules, addrs, hostNames));
245 private boolean match(String[] rules, String[] addrs, String[] hostNames) method in class:TestAddressMask
363 assertTrue(match(rules, addrs, hostNames));
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java154 // Rule to not match
214 assertTrue(match(rules, addrs, hostNames));
221 assertTrue(match(rules, addrs, hostNames));
228 assertFalse(match(rules, addrs, hostNames));
244 private boolean match(String[] rules, String[] addrs, String[] hostNames) method in class:TestAddressMask
362 assertTrue(match(rules, addrs, hostNames));
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java155 // Rule to not match
215 assertTrue(match(rules, addrs, hostNames));
222 assertTrue(match(rules, addrs, hostNames));
229 assertFalse(match(rules, addrs, hostNames));
245 private boolean match(String[] rules, String[] addrs, String[] hostNames) method in class:TestAddressMask
363 assertTrue(match(rules, addrs, hostNames));
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java154 // Rule to not match
214 assertTrue(match(rules, addrs, hostNames));
221 assertTrue(match(rules, addrs, hostNames));
228 assertFalse(match(rules, addrs, hostNames));
244 private boolean match(String[] rules, String[] addrs, String[] hostNames) method in class:TestAddressMask
362 assertTrue(match(rules, addrs, hostNames));
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java155 // Rule to not match
215 assertTrue(match(rules, addrs, hostNames));
222 assertTrue(match(rules, addrs, hostNames));
229 assertFalse(match(rules, addrs, hostNames));
245 private boolean match(String[] rules, String[] addrs, String[] hostNames) method in class:TestAddressMask
363 assertTrue(match(rules, addrs, hostNames));
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DStringUtils.java260 * @param value The value to match on.
261 * @param strPattern The pattern to match.
264 public static boolean match(String value, String strPattern) { method in class:StringUtils
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DLinkType.java49 Match match; field in class:LinkType
75 LinkType.Match match = Match.getLinkTypeMatch(forMapping, linkDefiner);
78 linkDefiner.getSourceIdsCaseSensitive(), linkDefiner.getTargetIdsCaseSensitive(), match);
86 return Match.MATCH_REVERSE.equals(match);
98 boolean firstCaseSensitive, boolean secondCaseSensitive, Match match) {
104 this.match = match;
97 LinkType(String name, String firstObjectSet, String secondObjectSet, boolean firstCaseSensitive, boolean secondCaseSensitive, Match match) argument
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DStringUtils.java262 * @param value The value to match on.
263 * @param strPattern The pattern to match.
266 public static boolean match(String value, String strPattern) { method in class:StringUtils
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DAddressMask.java57 * or contains an ':'). HOST - hostname match (foo.sun.com) HOSTPATTERN - host
58 * pattern match (begin with '.') ALLWILDCARD - *.*.*.* (first HOST is applied
113 if (mask.match(address))
255 * Main match function that determines which rule-type match function to use.
259 * @return <CODE>true</CODE>if one of the match functions found a match or
262 private boolean match(final InetAddress address) method in class:AddressMask
285 // first try ipv4 addr match, then hostname
299 * Try to match remot
[all...]
/forgerock/opendj2/src/server/org/opends/server/replication/server/changelog/file/
H A DLogFile.java577 public boolean positionTo(final K key, final KeyMatchingStrategy match, final PositionStrategy pos) argument
579 final Pair<Boolean, Record<K, V>> result = reader.seekToRecord(key, match, pos);
/forgerock/opendj2/src/server/org/opends/server/types/
H A DAddressMask.java56 * or contains an ':'). HOST - hostname match (foo.sun.com) HOSTPATTERN - host
57 * pattern match (begin with '.') ALLWILDCARD - *.*.*.* (first HOST is applied
112 if (mask.match(address))
254 * Main match function that determines which rule-type match function to use.
258 * @return <CODE>true</CODE>if one of the match functions found a match or
261 private boolean match(final InetAddress address) method in class:AddressMask
284 // first try ipv4 addr match, then hostname
298 * Try to match remot
[all...]

Completed in 52 milliseconds

123456