Package com.soffid.iam.model
Class HostServiceEntity
- java.lang.Object
-
- com.soffid.iam.model.HostServiceEntity
-
- Direct Known Subclasses:
HostServiceEntityImpl
public abstract class HostServiceEntity extends Object
Entity HostServiceEntity
-
-
Constructor Summary
Constructors Constructor Description HostServiceEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an HostServiceEntity instance and all identifiers for this entity equal the identifiers of the argument entity.AccountEntity
getAccount()
Gets value for attribute accountString
getCommand()
Gets value for attribute commandHostEntity
getHost()
Gets value for attribute hostLong
getId()
Gets value for attribute idString
getService()
Gets value for attribute serviceint
hashCode()
Returns a hash code based on this entity's identifiers.boolean
isManual()
Gets value for attribute manualvoid
setAccount(AccountEntity account)
Sets value for attribute accountvoid
setCommand(String command)
Sets value for attribute commandvoid
setHost(HostEntity host)
Sets value for attribute hostvoid
setId(Long id)
Sets value for attribute idvoid
setManual(boolean manual)
Sets value for attribute manualvoid
setService(String service)
Sets value for attribute service
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getHost
public HostEntity getHost()
Gets value for attribute host
-
setHost
public void setHost(HostEntity host)
Sets value for attribute host
-
getService
public String getService()
Gets value for attribute service
-
setService
public void setService(String service)
Sets value for attribute service
-
getCommand
public String getCommand()
Gets value for attribute command
-
setCommand
public void setCommand(String command)
Sets value for attribute command
-
isManual
public boolean isManual()
Gets value for attribute manual
-
setManual
public void setManual(boolean manual)
Sets value for attribute manual
-
getAccount
public AccountEntity getAccount()
Gets value for attribute account
-
setAccount
public void setAccount(AccountEntity account)
Sets value for attribute account
-
equals
public boolean equals(Object object)
Returnstrue
if the argument is an HostServiceEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-