mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
ACS-3361 Support for inclusionType. (#221)
This commit is contained in:
@@ -66,6 +66,8 @@ public class RestRuleSetModel extends TestModel implements IRestModel<RestRuleSe
|
|||||||
private String id;
|
private String id;
|
||||||
/** The node id of the folder that owns this rule set */
|
/** The node id of the folder that owns this rule set */
|
||||||
private String owningFolder;
|
private String owningFolder;
|
||||||
|
/** The reason why the rule set is included for the folder. */
|
||||||
|
private String inclusionType;
|
||||||
|
|
||||||
public String getId()
|
public String getId()
|
||||||
{
|
{
|
||||||
@@ -86,4 +88,14 @@ public class RestRuleSetModel extends TestModel implements IRestModel<RestRuleSe
|
|||||||
{
|
{
|
||||||
this.owningFolder = owningFolder;
|
this.owningFolder = owningFolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getInclusionType()
|
||||||
|
{
|
||||||
|
return inclusionType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInclusionType(String inclusionType)
|
||||||
|
{
|
||||||
|
this.inclusionType = inclusionType;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user