Skip to content

Commit

Permalink
Removing createDemoProcessDefinition property from REST demo data gen…
Browse files Browse the repository at this point in the history
…erator
  • Loading branch information
jbarrez committed Apr 15, 2013
1 parent 0196df1 commit f0f192a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public class DemoDataGenerator {
protected transient RepositoryService repositoryService;

protected boolean createDemoUsersAndGroups;
protected boolean createDemoProcessDefinitions;

public void init() {
this.identityService = processEngine.getIdentityService();
Expand All @@ -62,10 +61,6 @@ public void setCreateDemoUsersAndGroups(boolean createDemoUsersAndGroups) {
this.createDemoUsersAndGroups = createDemoUsersAndGroups;
}

public void setCreateDemoProcessDefinitions(boolean createDemoProcessDefinitions) {
this.createDemoProcessDefinitions = createDemoProcessDefinitions;
}

protected void initDemoGroups() {
String[] assignmentGroups = new String[] {"management", "sales", "marketing", "engineering"};
for (String groupId : assignmentGroups) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ http://www.springframework.org/schema/tx http://www.springframework.org/schema/t
init-method="init">
<property name="processEngine" ref="processEngine" />
<property name="createDemoUsersAndGroups" value="true" />
<property name="createDemoProcessDefinitions" value="true" />
</bean>

<bean id="dbProperties"
Expand Down

0 comments on commit f0f192a

Please sign in to comment.