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 boolean
canAdd()
Returns `true` if the `add` operation is allowed.boolean
canModify()
Returns `true` if the `modify` operation is allowed.boolean
canRead()
Returns `true` if the `read` operation is allowed.String
debugDump(int indent)
boolean
equals(Object o)
PropertyAccessType
getAccess()
int
getMaxOccurs()
int
getMinOccurs()
ItemProcessing
getProcessing()
int
hashCode()
void
setAccess(PropertyAccessType access)
void
setMaxOccurs(int maxOccurs)
void
setMinOccurs(int minOccurs)
void
setProcessing(ItemProcessing processing)
String
toString()
-
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:
debugDump
in 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.
-
-