Class AuthorizationParameters<O extends ObjectType,T extends ObjectType>
- java.lang.Object
-
- com.evolveum.midpoint.security.enforcer.api.AuthorizationParameters<O,T>
-
- All Implemented Interfaces:
ShortDumpable
public class AuthorizationParameters<O extends ObjectType,T extends ObjectType> extends Object implements ShortDumpable
- Author:
- semancik
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AuthorizationParameters.Builder<O extends ObjectType,T extends ObjectType>
-
Field Summary
Fields Modifier and Type Field Description static AuthorizationParameters<ObjectType,ObjectType>
EMPTY
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismObject<O>
getAnyObject()
ObjectDelta<O>
getDelta()
PrismObject<O>
getNewObject()
ObjectDeltaObject<O>
getOdo()
PrismObject<O>
getOldObject()
List<OrderConstraintsType>
getOrderConstraints()
QName
getRelation()
PrismObject<T>
getTarget()
boolean
hasDelta()
boolean
hasObject()
void
shortDump(StringBuilder sb)
Show the content of the object intended for diagnostics.String
toString()
-
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
-
-
-
-
Field Detail
-
EMPTY
public static final AuthorizationParameters<ObjectType,ObjectType> EMPTY
-
-
Method Detail
-
getOdo
public ObjectDeltaObject<O> getOdo()
-
hasObject
public boolean hasObject()
-
getOldObject
public PrismObject<O> getOldObject()
-
getNewObject
public PrismObject<O> getNewObject()
-
getAnyObject
public PrismObject<O> getAnyObject()
-
getDelta
public ObjectDelta<O> getDelta()
-
hasDelta
public boolean hasDelta()
-
getTarget
public PrismObject<T> getTarget()
-
getRelation
public QName getRelation()
-
getOrderConstraints
public List<OrderConstraintsType> getOrderConstraints()
-
shortDump
public void shortDump(StringBuilder sb)
Description copied from interface:ShortDumpable
Show 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:
shortDump
in interfaceShortDumpable
- Parameters:
sb
- StringBuilder to which to a compact one-line content of the object intended for diagnostics by system administrator should be appended.
-
-