View Javadoc

1   package com.atlassian.user.util.migration;
2   
3   public class MigratorConfiguration
4   {
5       /**
6        * An existing user is one that exists in the target repository. If this flag is set to true, then the migrator
7        * will copy group membership information for this user over to the target repository
8        */
9       private boolean migrateMembershipsForExistingUsers;
10  
11      public boolean isMigrateMembershipsForExistingUsers()
12      {
13          return migrateMembershipsForExistingUsers;
14      }
15  
16      public void setMigrateMembershipsForExistingUsers(boolean migrateMembershipsForExistingUsers)
17      {
18          this.migrateMembershipsForExistingUsers = migrateMembershipsForExistingUsers;
19      }
20  }