Class FilterNode
- java.lang.Object
-
- de.captaingoldfish.scim.sdk.server.filter.FilterNode
-
- Direct Known Subclasses:
AndExpressionNode,AttributeExpressionLeaf,AttributePathRoot,NotExpressionNode,OrExpressionNode
public abstract class FilterNode extends Object
author Pascal Knueppel
created at: 16.10.2019 - 16:07
the abstract tree declaration that will be build when the SCIM filter expression is parsed
-
-
Constructor Summary
Constructors Constructor Description FilterNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FilterNodegetParent()each node should now its parent node just in caseStringgetSubAttributeName()this attribute is relevant for resolving value-paths on patch operationsprotected voidsetParent(FilterNode parent)each node should now its parent node just in casevoidsetSubAttributeName(String subAttributeName)this attribute is relevant for resolving value-paths on patch operations
-
-
-
Method Detail
-
setSubAttributeName
public void setSubAttributeName(String subAttributeName)
this attribute is relevant for resolving value-paths on patch operations
-
getParent
public FilterNode getParent()
each node should now its parent node just in case
-
setParent
protected void setParent(FilterNode parent)
each node should now its parent node just in case
-
getSubAttributeName
public String getSubAttributeName()
this attribute is relevant for resolving value-paths on patch operations
-
-