Package com.evolveum.midpoint.repo.api
Class RepoAddOptions
- java.lang.Object
-
- com.evolveum.midpoint.schema.AbstractOptions
-
- com.evolveum.midpoint.repo.api.RepoAddOptions
-
- All Implemented Interfaces:
ShortDumpable,Serializable
public class RepoAddOptions extends AbstractOptions implements Serializable, ShortDumpable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RepoAddOptions()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RepoAddOptionscreateAllowUnencryptedValues()static RepoAddOptionscreateOverwrite()booleanisAllowUnencryptedValues()static booleanisAllowUnencryptedValues(RepoAddOptions options)booleanisOverwrite()static booleanisOverwrite(RepoAddOptions options)voidsetAllowUnencryptedValues(boolean allowUnencryptedValues)voidsetOverwrite(boolean overwrite)voidshortDump(StringBuilder sb)Show the content of the object intended for diagnostics.StringtoString()-
Methods inherited from class com.evolveum.midpoint.schema.AbstractOptions
appendFlag, appendVal, removeLastComma
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.util.ShortDumpable
shortDump, shortDumpLazily
-
-
-
-
Method Detail
-
isOverwrite
public boolean isOverwrite()
-
setOverwrite
public void setOverwrite(boolean overwrite)
-
isOverwrite
public static boolean isOverwrite(RepoAddOptions options)
-
createOverwrite
public static RepoAddOptions createOverwrite()
-
isAllowUnencryptedValues
public boolean isAllowUnencryptedValues()
-
setAllowUnencryptedValues
public void setAllowUnencryptedValues(boolean allowUnencryptedValues)
-
isAllowUnencryptedValues
public static boolean isAllowUnencryptedValues(RepoAddOptions options)
-
createAllowUnencryptedValues
public static RepoAddOptions createAllowUnencryptedValues()
-
shortDump
public void shortDump(StringBuilder sb)
Description copied from interface:ShortDumpableShow the content of the object intended for diagnostics. This method is supposed to append a compact, human-readable output in a single line. Unlike toString() method, there is no requirement to identify the actual class or type of the object. It is assumed that the class/type will be obvious from the context in which the output is used.- Specified by:
shortDumpin interfaceShortDumpable- Parameters:
sb- StringBuilder to which to a compact one-line content of the object intended for diagnostics by system administrator should be appended.
-
-