ACS-3361 Support for inclusionType. (#221)

This commit is contained in:
Tom Page
2022-08-09 13:05:51 +01:00
committed by GitHub
parent 9d807242ee
commit d0b100a88b

View File

@@ -66,6 +66,8 @@ public class RestRuleSetModel extends TestModel implements IRestModel<RestRuleSe
private String id;
/** The node id of the folder that owns this rule set */
private String owningFolder;
/** The reason why the rule set is included for the folder. */
private String inclusionType;
public String getId()
{
@@ -86,4 +88,14 @@ public class RestRuleSetModel extends TestModel implements IRestModel<RestRuleSe
{
this.owningFolder = owningFolder;
}
public String getInclusionType()
{
return inclusionType;
}
public void setInclusionType(String inclusionType)
{
this.inclusionType = inclusionType;
}
}