Class Configuration
- java.lang.Object
-
- org.apache.openmeetings.db.entity.HistoricalEntity
-
- org.apache.openmeetings.db.entity.basic.Configuration
-
- All Implemented Interfaces:
Serializable
,IDataProviderEntity
@Entity public class Configuration extends HistoricalEntity
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Configuration.Type
-
Constructor Summary
Constructors Constructor Description Configuration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getComment()
String
getFromVersion()
Long
getId()
String
getKey()
Configuration.Type
getType()
User
getUser()
String
getValue()
boolean
getValueB()
Long
getValueN()
String
getValueS()
void
setComment(String comment)
void
setFromVersion(String fromVersion)
void
setId(Long id)
void
setKey(String key)
void
setType(Configuration.Type type)
void
setUser(User user)
void
setValue(String value)
void
setValueB(boolean value)
void
setValueN(Long value)
void
setValueS(String value)
String
toString()
-
Methods inherited from class org.apache.openmeetings.db.entity.HistoricalEntity
getInserted, getUpdated, isDeleted, setDeleted, setInserted, setUpdated
-
-
-
-
Method Detail
-
getComment
public String getComment()
-
setComment
public void setComment(String comment)
-
getKey
public String getKey()
-
setKey
public void setKey(String key)
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
getType
public Configuration.Type getType()
-
setType
public void setType(Configuration.Type type)
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getUser
public User getUser()
-
setUser
public void setUser(User user)
-
getValueS
public String getValueS()
-
setValueS
public void setValueS(String value)
-
getValueN
public Long getValueN()
-
setValueN
public void setValueN(Long value)
-
getValueB
public boolean getValueB()
-
setValueB
public void setValueB(boolean value)
-
getFromVersion
public String getFromVersion()
-
setFromVersion
public void setFromVersion(String fromVersion)
-
-