public class SecurityProfileSearchCriteria
extends java.lang.Object
implements java.io.Serializable
The search criteria to be used to return security profiles.
The name field support "contains" queries with a minimum of 2
characters and maximum of 25 characters. Any queries with character lengths
outside of this range will throw invalid results.
| Constructor and Description |
|---|
SecurityProfileSearchCriteria() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.util.List<SecurityProfileSearchCriteria> |
getAndConditions()
A list of conditions which would be applied together with an AND
condition.
|
java.util.List<SecurityProfileSearchCriteria> |
getOrConditions()
A list of conditions which would be applied together with an OR
condition.
|
StringCondition |
getStringCondition()
A leaf node condition which can be used to specify a string condition.
|
int |
hashCode() |
void |
setAndConditions(java.util.Collection<SecurityProfileSearchCriteria> andConditions)
A list of conditions which would be applied together with an AND
condition.
|
void |
setOrConditions(java.util.Collection<SecurityProfileSearchCriteria> orConditions)
A list of conditions which would be applied together with an OR
condition.
|
void |
setStringCondition(StringCondition stringCondition)
A leaf node condition which can be used to specify a string condition.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
SecurityProfileSearchCriteria |
withAndConditions(java.util.Collection<SecurityProfileSearchCriteria> andConditions)
A list of conditions which would be applied together with an AND
condition.
|
SecurityProfileSearchCriteria |
withAndConditions(SecurityProfileSearchCriteria... andConditions)
A list of conditions which would be applied together with an AND
condition.
|
SecurityProfileSearchCriteria |
withOrConditions(java.util.Collection<SecurityProfileSearchCriteria> orConditions)
A list of conditions which would be applied together with an OR
condition.
|
SecurityProfileSearchCriteria |
withOrConditions(SecurityProfileSearchCriteria... orConditions)
A list of conditions which would be applied together with an OR
condition.
|
SecurityProfileSearchCriteria |
withStringCondition(StringCondition stringCondition)
A leaf node condition which can be used to specify a string condition.
|
public java.util.List<SecurityProfileSearchCriteria> getOrConditions()
A list of conditions which would be applied together with an OR condition.
A list of conditions which would be applied together with an OR condition.
public void setOrConditions(java.util.Collection<SecurityProfileSearchCriteria> orConditions)
A list of conditions which would be applied together with an OR condition.
orConditions - A list of conditions which would be applied together with an OR condition.
public SecurityProfileSearchCriteria withOrConditions(SecurityProfileSearchCriteria... orConditions)
A list of conditions which would be applied together with an OR condition.
Returns a reference to this object so that method calls can be chained together.
orConditions - A list of conditions which would be applied together with an OR condition.
public SecurityProfileSearchCriteria withOrConditions(java.util.Collection<SecurityProfileSearchCriteria> orConditions)
A list of conditions which would be applied together with an OR condition.
Returns a reference to this object so that method calls can be chained together.
orConditions - A list of conditions which would be applied together with an OR condition.
public java.util.List<SecurityProfileSearchCriteria> getAndConditions()
A list of conditions which would be applied together with an AND condition.
A list of conditions which would be applied together with an AND condition.
public void setAndConditions(java.util.Collection<SecurityProfileSearchCriteria> andConditions)
A list of conditions which would be applied together with an AND condition.
andConditions - A list of conditions which would be applied together with an AND condition.
public SecurityProfileSearchCriteria withAndConditions(SecurityProfileSearchCriteria... andConditions)
A list of conditions which would be applied together with an AND condition.
Returns a reference to this object so that method calls can be chained together.
andConditions - A list of conditions which would be applied together with an AND condition.
public SecurityProfileSearchCriteria withAndConditions(java.util.Collection<SecurityProfileSearchCriteria> andConditions)
A list of conditions which would be applied together with an AND condition.
Returns a reference to this object so that method calls can be chained together.
andConditions - A list of conditions which would be applied together with an AND condition.
public StringCondition getStringCondition()
A leaf node condition which can be used to specify a string condition.
A leaf node condition which can be used to specify a string condition.
public void setStringCondition(StringCondition stringCondition)
A leaf node condition which can be used to specify a string condition.
stringCondition - A leaf node condition which can be used to specify a string condition.
public SecurityProfileSearchCriteria withStringCondition(StringCondition stringCondition)
A leaf node condition which can be used to specify a string condition.
Returns a reference to this object so that method calls can be chained together.
stringCondition - A leaf node condition which can be used to specify a string condition.
public java.lang.String toString()
toString in class java.lang.ObjectObject.toString()public int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Object