Class DatabaseViewField
- java.lang.Object
-
- lumis.portal.group.databaseviewmembership.DatabaseViewField
-
public class DatabaseViewField extends Object
Fields that are read from the database view for obtaining data used for selecting the members of a group.- Since:
- 4.2.1
- Version:
- $Revision: 10458 $ $Date: 2009-06-02 15:49:09 -0300 (Tue, 02 Jun 2009) $
-
-
Constructor Summary
Constructors Constructor Description DatabaseViewField()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getColumnName()
Returns the column name for this field.String
getDataType()
Returns the data type of this field.DatabaseViewGroupTypeConfig
getGroupTypeConfig()
Returns the group type configuration this field definition belongs to.String
getId()
Returns the identifier of this field.void
setColumnName(String columnName)
Sets the column name for this field.void
setDataType(String dataType)
Sets the data type of this field.void
setGroupTypeConfig(DatabaseViewGroupTypeConfig groupTypeConfig)
Sets the group type configuration this field definition belongs to.
-
-
-
Method Detail
-
getId
public String getId()
Returns the identifier of this field.- Returns:
- the identifier.
- Since:
- 4.2.1
-
getColumnName
public String getColumnName()
Returns the column name for this field.- Returns:
- the column name.
- Since:
- 4.2.1
-
setColumnName
public void setColumnName(String columnName)
Sets the column name for this field.- Parameters:
columnName
- the column name.- Since:
- 4.2.1
-
getDataType
public String getDataType()
Returns the data type of this field.- Returns:
- one of the constants in
QueryFieldTypes
. - Since:
- 4.2.1
-
setDataType
public void setDataType(String dataType)
Sets the data type of this field.- Parameters:
dataType
- one of the constants inQueryFieldTypes
.- Since:
- 4.2.1
-
getGroupTypeConfig
public DatabaseViewGroupTypeConfig getGroupTypeConfig()
Returns the group type configuration this field definition belongs to.- Returns:
- the group type configuration.
- Since:
- 4.2.1
-
setGroupTypeConfig
public void setGroupTypeConfig(DatabaseViewGroupTypeConfig groupTypeConfig)
Sets the group type configuration this field definition belongs to.- Parameters:
groupTypeConfig
- the group type configuration.- Since:
- 4.2.1
-
-