Package lumis.service.content.wizard
Class FieldResume
- java.lang.Object
-
- lumis.service.content.wizard.FieldResume
-
public class FieldResume extends Object
Resume exiting fields from douidefinition.xml- Since:
- 12.0.0
- Version:
- $Revision: 23035 $ $Date: 2019-08-05 16:55:10 -0300 (Mon, 05 Aug 2019) $
-
-
Constructor Summary
Constructors Constructor Description FieldResume()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getColumnName()
Returns the column name.String
getDataType()
Returns the data type.String
getId()
Returns the id.String
getName()
Returns the name.boolean
isIntroduction()
Returns true when field is introduction.boolean
isKeywords()
Returns true when field is keywords.boolean
isPrimaryKey()
Returns true when field is primary key.boolean
isPrimaryName()
Returns true when field is primary name.boolean
isRequired()
Returns true when field is required.boolean
isSearchable()
Returns true when field is searchable.void
setColumnName(String columnName)
Sets the column name.void
setDataType(String dataType)
Sets the data type.void
setId(String id)
Sets the id.void
setIntroduction(boolean introduction)
Sets if field is introduction.void
setKeywords(boolean keywords)
Sets if field is keywords.void
setName(String name)
Sets the name.void
setPrimaryKey(boolean primaryKey)
Sets if field is primary key.void
setPrimaryName(boolean primaryName)
Sets if field is primary name.void
setRequired(boolean required)
Sets if field is required.void
setSearchable(boolean searchable)
Sets if field is searchable.
-
-
-
Method Detail
-
getId
public String getId()
Returns the id.- Returns:
- the id.
- Since:
- 12.0.0
-
setId
public void setId(String id)
Sets the id.- Parameters:
id
- the id.- Since:
- 12.0.0
-
getName
public String getName()
Returns the name.- Returns:
- the name.
- Since:
- 12.0.0
-
setName
public void setName(String name)
Sets the name.- Parameters:
name
- the name.- Since:
- 12.0.0
-
getDataType
public String getDataType()
Returns the data type.- Returns:
- the data type.
- Since:
- 12.0.0
-
setDataType
public void setDataType(String dataType)
Sets the data type.- Parameters:
dataType
- the data type.- Since:
- 12.0.0
-
isIntroduction
public boolean isIntroduction()
Returns true when field is introduction.- Returns:
- true when field is introduction.
- Since:
- 12.0.0
-
setIntroduction
public void setIntroduction(boolean introduction)
Sets if field is introduction.- Parameters:
introduction
- the boolean option.- Since:
- 12.0.0
-
isKeywords
public boolean isKeywords()
Returns true when field is keywords.- Returns:
- true when field is keywords.
- Since:
- 12.0.0
-
setKeywords
public void setKeywords(boolean keywords)
Sets if field is keywords.- Parameters:
keywords
- the boolean option.- Since:
- 12.0.0
-
isPrimaryKey
public boolean isPrimaryKey()
Returns true when field is primary key.- Returns:
- true when field is primary key.
- Since:
- 12.0.0
-
setPrimaryKey
public void setPrimaryKey(boolean primaryKey)
Sets if field is primary key.- Parameters:
primaryKey
- the boolean option.- Since:
- 12.0.0
-
isPrimaryName
public boolean isPrimaryName()
Returns true when field is primary name.- Returns:
- true when field is primary name.
- Since:
- 12.0.0
-
setPrimaryName
public void setPrimaryName(boolean primaryName)
Sets if field is primary name.- Parameters:
primaryName
- the boolean option.- Since:
- 12.0.0
-
isSearchable
public boolean isSearchable()
Returns true when field is searchable.- Returns:
- true when field is searchable.
- Since:
- 12.0.0
-
setSearchable
public void setSearchable(boolean searchable)
Sets if field is searchable.- Parameters:
searchable
- the boolean option.- Since:
- 12.0.0
-
isRequired
public boolean isRequired()
Returns true when field is required.- Returns:
- true when field is required.
- Since:
- 12.0.0
-
setRequired
public void setRequired(boolean required)
Sets if field is required.- Parameters:
required
- the boolean option.- Since:
- 12.0.0
-
getColumnName
public String getColumnName()
Returns the column name.- Returns:
- the column name.
- Since:
- 12.0.0
-
setColumnName
public void setColumnName(String columnName)
Sets the column name.- Parameters:
columnName
- the column name.- Since:
- 12.0.0
-
-