Class ExtractionClauseGroup
- java.lang.Object
-
- org.ametys.plugins.extraction.component.ExtractionClauseGroup
-
public class ExtractionClauseGroup extends Object
Object representing an extraction join group information
-
-
Constructor Summary
Constructors Constructor Description ExtractionClauseGroup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCompleteExpression()
Retrieves the complete group expression The complete group expression contains the characters used to identify the expression This expression has to be replaced the join expressionString
getExpression()
Retrieves the group expression The group expression does not contain the characters used to identify the expressionString
getFieldPath()
Retrieves the field pathString
getVariable()
Retrieves the variablevoid
setCompleteExpression(String completeExpression)
Set the group expressionvoid
setExpression(String groupExpression)
Set the group expressionvoid
setFieldPath(String fieldPath)
Set the field pathvoid
setVariable(String variable)
Set the variable
-
-
-
Constructor Detail
-
ExtractionClauseGroup
public ExtractionClauseGroup()
-
-
Method Detail
-
getCompleteExpression
public String getCompleteExpression()
Retrieves the complete group expression The complete group expression contains the characters used to identify the expression This expression has to be replaced the join expression- Returns:
- the group expression
-
setCompleteExpression
public void setCompleteExpression(String completeExpression)
Set the group expression- Parameters:
completeExpression
- the group expression to set
-
getExpression
public String getExpression()
Retrieves the group expression The group expression does not contain the characters used to identify the expression- Returns:
- the group expression
-
setExpression
public void setExpression(String groupExpression)
Set the group expression- Parameters:
groupExpression
- the group expression to set
-
getVariable
public String getVariable()
Retrieves the variable- Returns:
- the variable
-
setVariable
public void setVariable(String variable)
Set the variable- Parameters:
variable
- the variable to set
-
getFieldPath
public String getFieldPath()
Retrieves the field path- Returns:
- the field path
-
setFieldPath
public void setFieldPath(String fieldPath)
Set the field path- Parameters:
fieldPath
- the field path to set
-
-