Uses of Class
org.identityconnectors.framework.common.objects.ConnectorObject
-
-
Uses of ConnectorObject in org.identityconnectors.contract.test
Methods in org.identityconnectors.contract.test that return types with arguments of type ConnectorObject Modifier and Type Method Description static List<ConnectorObject>
ConnectorHelper. search(ConnectorFacade connectorFacade, ObjectClass objClass, Filter filter, OperationOptions opOptions)
Performs search on connector facade with specified object class, filter and operation options.static Map<Uid,ConnectorObject>
ConnectorHelper. search2Map(ConnectorFacade connectorFacade, ObjectClass objClass, Filter filter, OperationOptions opOptions)
Performs search on connector facade with specified object class, filter and operation options.Methods in org.identityconnectors.contract.test with parameters of type ConnectorObject Modifier and Type Method Description static boolean
ConnectorHelper. checkObject(ObjectClassInfo objectClassInfo, ConnectorObject connectorObj, Set<Attribute> requestedAttributes)
Checks if object has expected attributes and values.static boolean
ConnectorHelper. checkObject(ObjectClassInfo objectClassInfo, ConnectorObject connectorObj, Set<Attribute> requestedAttributes, boolean checkNotReturnedByDefault)
Checks if object has expected attributes and values.static boolean
ConnectorHelper. checkObjectByAttrDelta(ObjectClassInfo objectClassInfo, ConnectorObject connectorObj, Set<AttributeDelta> requestedAttributesDelta)
Checks if object has expected attributesDelta and values.static boolean
ConnectorHelper. checkObjectByAttrDelta(ObjectClassInfo objectClassInfo, ConnectorObject connectorObj, Set<AttributeDelta> requestedAttributesDelta, boolean checkNotReturnedByDefault)
Checks if object has expected attributesDelta and values. -
Uses of ConnectorObject in org.identityconnectors.framework.api.operations
Methods in org.identityconnectors.framework.api.operations that return ConnectorObject Modifier and Type Method Description ConnectorObject
GetApiOp. getObject(ObjectClass objectClass, Uid uid, OperationOptions options)
Get a particularConnectorObject
based on theUid
. -
Uses of ConnectorObject in org.identityconnectors.framework.common.objects
Methods in org.identityconnectors.framework.common.objects that return ConnectorObject Modifier and Type Method Description ConnectorObject
ConnectorObjectBuilder. build()
Builds a 'ConnectorObject' based on the attributes and Uid provided.ConnectorObject
SyncDelta. getObject()
Returns the connector object that changed.ConnectorObject
SyncDeltaBuilder. getObject()
Returns the object that changed.Methods in org.identityconnectors.framework.common.objects with parameters of type ConnectorObject Modifier and Type Method Description ConnectorObjectBuilder
ConnectorObjectBuilder. add(ConnectorObject obj)
Takes all the attribute from aConnectorObject
and add/overwrite the current attributes.static Date
AttributeUtil. getPasswordExpirationDate(ConnectorObject obj)
Retrieve the password expiration date from theConnectorObject
.boolean
ResultsHandler. handle(ConnectorObject connectorObject)
Invoked each time a matchingConnectorObject
is returned from a query request.static Boolean
AttributeUtil. isEnabled(ConnectorObject obj)
Determine if theConnectorObject
is enable.static Boolean
AttributeUtil. isLockedOut(ConnectorObject obj)
Determine if theConnectorObject
is locked out.static Boolean
AttributeUtil. isPasswordExpired(ConnectorObject obj)
Determine if the password is expired for this object.SyncDeltaBuilder
SyncDeltaBuilder. setObject(ConnectorObject object)
Sets the object that changed and implicitly sets Uid if object is not null. -
Uses of ConnectorObject in org.identityconnectors.framework.common.objects.filter
Methods in org.identityconnectors.framework.common.objects.filter with parameters of type ConnectorObject Modifier and Type Method Description boolean
AndFilter. accept(ConnectorObject obj)
Ands the left and right filters.boolean
ContainsAllValuesFilter. accept(ConnectorObject obj)
Determine whether the specifiedConnectorObject
contains anAttribute
that has the same name as and contains all of the values of the attribute thatFilterBuilder
placed into this filter.boolean
EqualsFilter. accept(ConnectorObject obj)
Determines whether the specifiedConnectorObject
contains an attribute that has the same name and contains a value that is equals the value of the attribute thatFilterBuilder
placed into this filter.boolean
Filter. accept(ConnectorObject obj)
Determines whether the specifiedConnectorObject
matches this filter.boolean
GreaterThanFilter. accept(ConnectorObject obj)
Determine if theConnectorObject
Attribute
value is greater than the one provided in the filter.boolean
GreaterThanOrEqualFilter. accept(ConnectorObject obj)
boolean
LessThanFilter. accept(ConnectorObject obj)
boolean
LessThanOrEqualFilter. accept(ConnectorObject obj)
Return false if the attribute is not present otherwise compare the attribute to theConnectorObject
'sAttribute
.boolean
NotFilter. accept(ConnectorObject obj)
Return the opposite the internal filters return value.boolean
OrFilter. accept(ConnectorObject obj)
Takes the result from the left and ORs it w/ the right filter.boolean
StringFilter. accept(ConnectorObject obj)
int
ComparableAttributeFilter. compare(ConnectorObject obj)
Call compareTo on the attribute values.boolean
AttributeFilter. isPresent(ConnectorObject obj)
Determines if the attribute provided is present in theConnectorObject
. -
Uses of ConnectorObject in org.identityconnectors.framework.impl.api
Methods in org.identityconnectors.framework.impl.api that return ConnectorObject Modifier and Type Method Description ConnectorObject
AbstractConnectorFacade. getObject(ObjectClass objectClass, Uid uid, OperationOptions options)
Get a particularConnectorObject
based on theUid
.Methods in org.identityconnectors.framework.impl.api with parameters of type ConnectorObject Modifier and Type Method Description boolean
SearchResultsHandlerLoggingProxy. handle(ConnectorObject connectorObject)
-
Uses of ConnectorObject in org.identityconnectors.framework.impl.api.local.operations
Methods in org.identityconnectors.framework.impl.api.local.operations that return ConnectorObject Modifier and Type Method Description ConnectorObject
GetImpl. getObject(ObjectClass objectClass, Uid uid, OperationOptions options)
ConnectorObject
ObjectNormalizerFacade. normalizeObject(ConnectorObject orig)
Returns the normalized object.ConnectorObject
AttributesToGetResultsHandler. reduceToAttrsToGet(ConnectorObject obj)
Methods in org.identityconnectors.framework.impl.api.local.operations with parameters of type ConnectorObject Modifier and Type Method Description boolean
FilteredResultsHandler.PassThroughFilter. accept(ConnectorObject obj)
boolean
NormalizingFilter. accept(ConnectorObject obj)
Return the decision based on normalized version of the object.boolean
DuplicateFilteringResultsHandler. handle(ConnectorObject object)
boolean
FilteredResultsHandler. handle(ConnectorObject object)
boolean
NormalizingResultsHandler. handle(ConnectorObject obj)
boolean
SearchImpl.AttributesToGetSearchResultsHandler. handle(ConnectorObject obj)
Handle the object w/ reduced attributes.ConnectorObject
ObjectNormalizerFacade. normalizeObject(ConnectorObject orig)
Returns the normalized object.ConnectorObject
AttributesToGetResultsHandler. reduceToAttrsToGet(ConnectorObject obj)
-
Uses of ConnectorObject in org.identityconnectors.test.common
Methods in org.identityconnectors.test.common that return types with arguments of type ConnectorObject Modifier and Type Method Description List<ConnectorObject>
ToListResultsHandler. getObjects()
static List<ConnectorObject>
TestHelpers. searchToList(SearchApiOp search, ObjectClass objectClass, Filter filter)
static List<ConnectorObject>
TestHelpers. searchToList(SearchApiOp search, ObjectClass objectClass, Filter filter, OperationOptions options)
static List<ConnectorObject>
TestHelpers. searchToList(SearchOp<?> search, ObjectClass objectClass, Filter filter)
Performs a raw, unfiltered search at the SPI level, eliminating duplicates from the result set.static List<ConnectorObject>
TestHelpers. searchToList(SearchOp<?> search, ObjectClass objectClass, Filter filter, OperationOptions options)
Performs a raw, unfiltered search at the SPI level, eliminating duplicates from the result set.Methods in org.identityconnectors.test.common with parameters of type ConnectorObject Modifier and Type Method Description boolean
ToListResultsHandler. handle(ConnectorObject object)
-