Class PropertyLimitations
- java.lang.Object
-
- com.evolveum.midpoint.schema.processor.PropertyLimitations
-
- All Implemented Interfaces:
DebugDumpable,Serializable
public class PropertyLimitations extends Object implements DebugDumpable, Serializable
- Author:
- semancik
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description PropertyLimitations()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanAdd()Returns `true` if the `add` operation is allowed.booleancanModify()Returns `true` if the `modify` operation is allowed.booleancanRead()Returns `true` if the `read` operation is allowed.StringdebugDump(int indent)booleanequals(Object o)PropertyAccessTypegetAccess()intgetMaxOccurs()intgetMinOccurs()ItemProcessinggetProcessing()inthashCode()voidsetAccess(PropertyAccessType access)voidsetMaxOccurs(int maxOccurs)voidsetMinOccurs(int minOccurs)voidsetProcessing(ItemProcessing processing)StringtoString()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDumpLazily, debugDumpLazily
-
-
-
-
Method Detail
-
getProcessing
public ItemProcessing getProcessing()
-
setProcessing
public void setProcessing(ItemProcessing processing)
-
getMinOccurs
public int getMinOccurs()
-
setMinOccurs
public void setMinOccurs(int minOccurs)
-
getMaxOccurs
public int getMaxOccurs()
-
setMaxOccurs
public void setMaxOccurs(int maxOccurs)
-
getAccess
public PropertyAccessType getAccess()
-
setAccess
public void setAccess(PropertyAccessType access)
-
debugDump
public String debugDump(int indent)
- Specified by:
debugDumpin interfaceDebugDumpable
-
canModify
public boolean canModify()
Returns `true` if the `modify` operation is allowed.
-
canAdd
public boolean canAdd()
Returns `true` if the `add` operation is allowed.
-
canRead
public boolean canRead()
Returns `true` if the `read` operation is allowed.
-
-