Package de.xima.fc.entities
Class MandantFrontendServer
- java.lang.Object
-
- de.xima.cmn.dao.model.AEntity<Long>
-
- de.xima.fc.entities.AbstractEntity
-
- de.xima.fc.entities.AbstractLockableEntity
-
- de.xima.fc.entities.AbstractMandantDependentEntity
-
- de.xima.fc.entities.MandantFrontendServer
-
- All Implemented Interfaces:
de.xima.cmn.dao.interfaces.IEntity<Long>
,de.xima.cmn.dao.interfaces.ILockableEntity<Long>
,IDescriptionProviding
,IMandantDependent
,INameProviding
,ITransferable
,ITransferableEntity
,ITransferableLockableEntity
,Serializable
,Comparable<de.xima.cmn.dao.interfaces.IEntity<Long>>
@Entity public class MandantFrontendServer extends AbstractMandantDependentEntity implements INameProviding, IDescriptionProviding
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
ATTR_ALLOWALLFORMS
static String
ATTR_BASEURL
static String
ATTR_BESCHREIBUNG
static String
ATTR_FRONTENDSERVER
-
Fields inherited from class de.xima.fc.entities.AbstractMandantDependentEntity
mandant
-
Fields inherited from class de.xima.fc.entities.AbstractLockableEntity
COL_LOCKINGVERSION, lockingVersion
-
Fields inherited from class de.xima.fc.entities.AbstractEntity
COL_ID, id
-
Fields inherited from interface de.xima.fc.entities.interfaces.IDescriptionProviding
ATTR_DESCRIPTION, COL_DESCRIPTION
-
Fields inherited from interface de.xima.fc.entities.interfaces.IMandantDependent
ATTR_MANDANT, COL_CLIENT_ID
-
Fields inherited from interface de.xima.fc.entities.interfaces.INameProviding
ATTR_NAME, COL_NAME
-
Fields inherited from interface de.xima.fc.entities.interfaces.ITransferableEntity
IMPORT_ID, INVALID_ID
-
-
Constructor Summary
Constructors Constructor Description MandantFrontendServer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBaseurl()
@Size(max=250) String
getBeschreibung()
FrontendServer
getFrontendserver()
String
getFstoken()
Long
getId()
String
getName()
boolean
isAllowAllForms()
void
setAllowAllForms(boolean allowAllForms)
void
setBaseurl(String baseurl)
void
setBeschreibung(String beschreibung)
void
setFrontendserver(FrontendServer frontendserver)
void
setFstoken(String fstoken)
void
setName(String name)
-
Methods inherited from class de.xima.fc.entities.AbstractMandantDependentEntity
getMandant, setMandant
-
Methods inherited from class de.xima.fc.entities.AbstractLockableEntity
entityHasChanged, getLockingVersion, setLockingVersion, toString
-
Methods inherited from class de.xima.fc.entities.AbstractEntity
asIntValue, isPersisted, setId, setId
-
Methods inherited from class de.xima.cmn.dao.model.AEntity
compareTo, equals, getDBTableName, hashCode
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface de.xima.fc.entities.interfaces.IDescriptionProviding
getDescription
-
-
-
-
Field Detail
-
ATTR_BESCHREIBUNG
public static final String ATTR_BESCHREIBUNG
- See Also:
- Constant Field Values
-
ATTR_BASEURL
public static final String ATTR_BASEURL
- See Also:
- Constant Field Values
-
ATTR_FRONTENDSERVER
public static final String ATTR_FRONTENDSERVER
- See Also:
- Constant Field Values
-
ATTR_ALLOWALLFORMS
public static final String ATTR_ALLOWALLFORMS
- See Also:
- Constant Field Values
-
-
Method Detail
-
getBaseurl
public String getBaseurl()
-
setBaseurl
public void setBaseurl(String baseurl)
-
getBeschreibung
@Size(max=250) public @Size(max=250) String getBeschreibung()
- Specified by:
getBeschreibung
in interfaceIDescriptionProviding
-
setBeschreibung
public void setBeschreibung(String beschreibung)
-
getFstoken
public String getFstoken()
-
setFstoken
public void setFstoken(String fstoken)
-
getFrontendserver
public FrontendServer getFrontendserver()
-
setFrontendserver
public void setFrontendserver(FrontendServer frontendserver)
-
getName
public String getName()
- Specified by:
getName
in interfaceINameProviding
- Returns:
- The name of this object.
-
setName
public void setName(String name)
-
isAllowAllForms
public boolean isAllowAllForms()
- Returns:
- If
true
, this frontend server is allowed to provide all available forms, even if that form was not yet made available on this frontend server. Iffalse
, access for this frontend server must be configured separately for each form.
-
setAllowAllForms
public void setAllowAllForms(boolean allowAllForms)
- Parameters:
allowAllForms
- Iftrue
, this frontend server is allowed to provide all available forms, even if that form was not yet made available on this frontend server. Iffalse
, access for this frontend server must be configured separately for each form.
-
-