Class RegexModel
- java.lang.Object
-
- com.gentics.contentnode.rest.model.RegexModel
-
- All Implemented Interfaces:
Serializable
public class RegexModel extends Object implements Serializable
Model for Regex definition- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RegexModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
DescriptionString
getExpression()
ExpressionInteger
getId()
Local Regex IDString
getName()
Namevoid
setDescription(String description)
Set descriptionvoid
setExpression(String expression)
Set expressionvoid
setId(Integer id)
Set the local IDvoid
setName(String name)
Set the name
-
-
-
Method Detail
-
getId
public Integer getId()
Local Regex ID- Returns:
- ID
-
setId
public void setId(Integer id)
Set the local ID- Parameters:
id
- local ID
-
getName
public String getName()
Name- Returns:
- name
-
setName
public void setName(String name)
Set the name- Parameters:
name
- name
-
getDescription
public String getDescription()
Description- Returns:
- description
-
setDescription
public void setDescription(String description)
Set description- Parameters:
description
- description
-
getExpression
public String getExpression()
Expression- Returns:
- expression
-
setExpression
public void setExpression(String expression)
Set expression- Parameters:
expression
- expression
-
-