Class RemoteBusinessRule
- java.lang.Object
-
- org.neotropic.kuwaiba.northbound.ws.model.application.RemoteBusinessRule
-
- All Implemented Interfaces:
Serializable
public class RemoteBusinessRule extends Object implements Serializable
Wrapper of BusinessRule- Author:
- Charles Edward Bedon Cortazar <charles.bedon@kuwaiba.org>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RemoteBusinessRule(long ruleId, String name, String description, String appliesTo, int type, int scope, String version)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAppliesTo()List<RemoteBusinessRuleConstraint>getConstraints()StringgetDescription()StringgetName()longgetRuleId()intgetScope()intgetType()StringgetVersion()voidsetAppliesTo(String appliesTo)voidsetConstraints(List<RemoteBusinessRuleConstraint> constraints)voidsetDescription(String description)voidsetName(String name)voidsetRuleId(long ruleId)voidsetScope(int scope)voidsetType(int type)voidsetVersion(String version)
-
-
-
Method Detail
-
getRuleId
public long getRuleId()
-
setRuleId
public void setRuleId(long ruleId)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getAppliesTo
public String getAppliesTo()
-
setAppliesTo
public void setAppliesTo(String appliesTo)
-
getType
public int getType()
-
setType
public void setType(int type)
-
getScope
public int getScope()
-
setScope
public void setScope(int scope)
-
getVersion
public String getVersion()
-
setVersion
public void setVersion(String version)
-
getConstraints
public List<RemoteBusinessRuleConstraint> getConstraints()
-
setConstraints
public void setConstraints(List<RemoteBusinessRuleConstraint> constraints)
-
-