JDEV_HOME_DIR, SYSTEM_DIR| Constructor and Description | 
|---|
UserPropertiesMigrator()  | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
canMigrate(int category,
          java.io.File sourceDir)
Determine whether a given category can be migrated from a given directory. 
 | 
java.lang.String | 
getDescription(int category)
Get a one line description for a given migration category. 
 | 
int[] | 
getMigrationCategories()
Get an array of unique id values representing available categories to
 migrate. 
 | 
boolean | 
isSelected(int category)
Determine whether a category has been flagged for migration. 
 | 
java.lang.String[] | 
migrate(java.io.File srcDir,
       java.io.File dstDir)
Migrate all flagged categories, from a given source directory, to a given
 destination directory. 
 | 
void | 
setSelected(int category,
           boolean selected)
Flag a category as selected for migration. 
 | 
public int[] getMigrationCategories()
MigratorgetMigrationCategories in interface Migratorpublic java.lang.String getDescription(int category)
MigratorgetDescription in interface Migratorpublic boolean canMigrate(int category,
                 java.io.File sourceDir)
MigratorcanMigrate in interface Migratorpublic void setSelected(int category,
               boolean selected)
MigratorsetSelected in interface Migratorpublic boolean isSelected(int category)
MigratorisSelected in interface Migratorpublic java.lang.String[] migrate(java.io.File srcDir,
                         java.io.File dstDir)
Migrator