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 String
getAppliesTo()
List<RemoteBusinessRuleConstraint>
getConstraints()
String
getDescription()
String
getName()
long
getRuleId()
int
getScope()
int
getType()
String
getVersion()
void
setAppliesTo(String appliesTo)
void
setConstraints(List<RemoteBusinessRuleConstraint> constraints)
void
setDescription(String description)
void
setName(String name)
void
setRuleId(long ruleId)
void
setScope(int scope)
void
setType(int type)
void
setVersion(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)
-
-