Package org.openiam.base.response
Class URISubstitutionToken
- java.lang.Object
-
- org.openiam.base.response.URISubstitutionToken
-
- All Implemented Interfaces:
Serializable
public class URISubstitutionToken extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description URISubstitutionToken()
URISubstitutionToken(String query, String replaceWith, boolean exactMatch, boolean fastSearch)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getQuery()
String
getReplaceWith()
int
hashCode()
boolean
isExactMatch()
boolean
isFastSearch()
void
setExactMatch(boolean exactMatch)
void
setFastSearch(boolean fastSearch)
void
setQuery(String query)
void
setReplaceWith(String replaceWith)
String
toString()
-
-
-
Method Detail
-
getQuery
public String getQuery()
-
setQuery
public void setQuery(String query)
-
getReplaceWith
public String getReplaceWith()
-
setReplaceWith
public void setReplaceWith(String replaceWith)
-
isExactMatch
public boolean isExactMatch()
-
setExactMatch
public void setExactMatch(boolean exactMatch)
-
isFastSearch
public boolean isFastSearch()
-
setFastSearch
public void setFastSearch(boolean fastSearch)
-
-