public class SourceValue extends AbstractInitializableComponent
| Modifier and Type | Field and Description |
|---|---|
private boolean |
ignoreCase
Whether case should be ignored when matching.
|
private boolean |
partialMatch
Whether partial matches should be allowed.
|
private Pattern |
pattern
In the regexp case this contains the compiled pattern.
|
private String |
value
Value string.
|
| Constructor and Description |
|---|
SourceValue() |
| Modifier and Type | Method and Description |
|---|---|
protected void |
doInitialize() |
Pattern |
getPattern()
get the compiled pattern.
|
String |
getValue()
Gets the value string.
|
boolean |
isIgnoreCase()
Gets whether case should be ignored when matching.
|
boolean |
isPartialMatch()
Gets whether partial matches should be allowed.
|
void |
setIgnoreCase(Boolean theIgnoreCase)
Set whether to ignore the case.
|
void |
setPartialMatch(Boolean thePartialMatch)
Set whether partial matches should be allowed.
|
void |
setValue(String theValue)
Set the value string.
|
String |
toString() |
destroy, doDestroy, initialize, isDestroyed, isInitializedprivate boolean ignoreCase
private boolean partialMatch
protected void doInitialize()
throws ComponentInitializationException
doInitialize in class AbstractInitializableComponentComponentInitializationExceptionpublic void setIgnoreCase(@Nullable Boolean theIgnoreCase)
theIgnoreCase - whether case should be ignored when matching. Null defaults to false;public boolean isIgnoreCase()
public void setPartialMatch(@Nullable Boolean thePartialMatch)
thePartialMatch - whether partial matches should be allowed. Null defaults to false;public boolean isPartialMatch()
public void setValue(@Nullable String theValue)
theValue - value string This may contain regular expressions.@Nonnull public Pattern getPattern()
Copyright © 1999–2017 Shibboleth Consortium. All rights reserved.