Class ProfileImportResult
- java.lang.Object
-
- com.opencloud.rhino.management.profile.ProfileImportResult
-
- All Implemented Interfaces:
Serializable
public final class ProfileImportResult extends Object implements Serializable
Data class holding the results of a profile import operation.
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]
getCreated()
Get the names of profiles that were created during the import.String[]
getRemoved()
Get the names of profiles that were removed during the import.String[]
getReplaced()
Get the names of profiles that were replaced during the import.String[]
getSkipped()
Get the names of profiles that were skipped during the import.String[]
getUpdated()
Get the names of profiles that were updated during the import.String
toString()
-
-
-
Method Detail
-
getCreated
public String[] getCreated()
Get the names of profiles that were created during the import.
-
getReplaced
public String[] getReplaced()
Get the names of profiles that were replaced during the import.
-
getUpdated
public String[] getUpdated()
Get the names of profiles that were updated during the import.
-
getRemoved
public String[] getRemoved()
Get the names of profiles that were removed during the import.
-
getSkipped
public String[] getSkipped()
Get the names of profiles that were skipped during the import.
-
-