Searched defs:operation (Results 451 - 475 of 964) sorted by relevance

<<11121314151617181920>>

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/operation/
H A DPreOperationModifyDNOperation.java27 package org.opends.server.types.operation;
43 * pre-operation plugins for modify DN operations. Note that this
145 * operation. This will include attribute-level changes from the
148 * it may also be used by pre-operation plugins to cause additional
170 * pre-operation plugins.
H A DPreOperationOperation.java27 package org.opends.server.types.operation;
42 * pre-operation plugins for all types of operations. Note that this
77 * Retrieves the error message for this operation. Its contents may
80 * @return The error message for this operation.
87 * Specifies the error message for this operation.
89 * @param errorMessage The error message for this operation.
108 * Retrieves the authorization DN for this operation. In many
113 * requested (e.g., the operation included a proxied authorization
116 * @return The authorization DN for this operation.
124 * operation, whic
[all...]
H A DPreParseModifyDNOperation.java27 package org.opends.server.types.operation;
131 * operation, as provided in the request from the client. This
H A DPreParseOperation.java27 package org.opends.server.types.operation;
52 * operation.
55 * controls for this operation.
84 * Retrieves the error message for this operation. Its contents may
87 * @return The error message for this operation.
94 * Specifies the error message for this operation.
96 * @param errorMessage The error message for this operation.
116 * operation, which should be written to the log but not included in the
120 * operation.
127 * Adds an additional log item to this operation, whic
[all...]
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaAuditFilter.java48 public boolean isAudited(String objectId, String realm, ConfigOperation operation, Subject subject) { argument
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DSessionAuditor.java109 private void auditActivity(SessionInfo sessionInfo, EventName eventName, ConfigOperation operation, long timestamp) { argument
126 .operation(String.valueOf(operation));
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/
H A DIdOperation.java34 * operation. Currently defined operations on objects are
53 public IdOperation(String operation) { argument
54 op = operation;
58 * The <code> READ </code> operation is supported by default for all
59 * supported identities for all the plugins. This operation means that the
66 * The <code> EDIT </code> operation is supported only for the plugins
76 * The <code> CREATE </code> operation is supported only for the plugins
81 * case the create operation for that plugin is only called for user
87 * The <code> DELETE </code> operation is supported only for the plugins
92 * In this case the delete operation fo
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/
H A DCTSOperationsMonitoringStore.java35 * Adds a Token operation into the monitoring store.
37 * The operation is mapped to the type of the token. The operations per configurable period and cumulative count
38 * will be updated for the token type and operation.
40 * Passing in <code>null</code> as the token will mean that the operation is not mapped to a particular token
42 * The operations per configurable period and cumulative count will be updated for the operation.
44 * @param token The Token the operation was performed on.
45 * @param operation The operation performed.
46 * @param success Whether the operation was successful or not.
48 void addTokenOperation(Token token, CTSOperation operation, boolea argument
63 getAverageOperationsPerPeriod(TokenType type, CTSOperation operation) argument
78 getMinimumOperationsPerPeriod(TokenType type, CTSOperation operation) argument
93 getMaximumOperationsPerPeriod(TokenType type, CTSOperation operation) argument
108 getOperationsCumulativeCount(TokenType type, CTSOperation operation) argument
119 getOperationFailuresCumulativeCount(CTSOperation operation) argument
127 getAverageOperationFailuresPerPeriod(CTSOperation operation) argument
135 getMinimumOperationFailuresPerPeriod(CTSOperation operation) argument
143 getMaximumOperationFailuresPerPeriod(CTSOperation operation) argument
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/operations/
H A DOperationStore.java48 * @param operationRate An instance of a Map of CTSOperation and OperationMonitor to store token operation rates.
57 * Adds a Token operation into the monitoring store.
59 * The operations per configurable period and cumulative count will be updated for the operation.
61 * @param operation The operation performed.
63 void add(CTSOperation operation) { argument
66 rate = operationRate.get(operation);
69 operationRate.put(operation, rate);
76 * Gets the average rate of the specified operation that has been made in a given period.
78 * @param operation Th
81 getAverageRate(CTSOperation operation) argument
92 getMinRate(CTSOperation operation) argument
103 getMaxRate(CTSOperation operation) argument
114 getCount(CTSOperation operation) argument
[all...]
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/operation/
H A DTokenRequestMarshaller.java17 package org.forgerock.openam.sts.rest.operation;
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/operation/translate/
H A DTokenTransformImpl.java17 package org.forgerock.openam.sts.rest.operation.translate;
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaAuditFilter.java48 public boolean isAudited(String objectId, String realm, ConfigOperation operation, Subject subject) { argument
/forgerock/opendj-b2.6/src/server/org/opends/server/core/
H A DWorkflowTopologyNode.java89 * Executes an operation on a set of data being identified by the
92 * @param operation the operation to execute
94 * @throws CanceledOperationException if this operation should
97 public void execute(Operation operation) argument
99 // Execute the operation
100 getWorkflowImpl().execute(operation);
102 // For subtree search operation we need to go through the subordinate
104 if (operation.getOperationType() == OperationType.SEARCH)
106 executeSearchOnSubordinates((SearchOperation) operation);
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DAttributeValuePasswordValidator.java138 Operation operation, Entry userEntry,
136 passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, MessageBuilder invalidReason) argument
H A DCharacterSetPasswordValidator.java121 Operation operation, Entry userEntry,
119 passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, MessageBuilder invalidReason) argument
H A DDictionaryPasswordValidator.java123 Operation operation, Entry userEntry,
121 passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, MessageBuilder invalidReason) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/plugins/
H A DChangeNumberControlPlugin.java51 import org.opends.server.types.operation.PostOperationAddOperation;
52 import org.opends.server.types.operation.PostOperationDeleteOperation;
53 import org.opends.server.types.operation.PostOperationModifyDNOperation;
54 import org.opends.server.types.operation.PostOperationModifyOperation;
55 import org.opends.server.types.operation.PostOperationOperation;
270 // Ensure that the set of plugin types contains only pre-operation add,
271 // pre-operation modify, and pre-operation modify DN.
307 * and sets the control response in the operation.
309 * @param operation th
311 processCsnControl(PostOperationOperation operation) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/plugin/
H A DPendingChanges.java39 import org.opends.server.types.operation.PluginOperation;
61 * for each operation done on the replication domain.
157 * operation.
159 * @param operation The local operation for which an UpdateMsg must
161 * @return The ChangeNumber now associated to the operation.
163 public synchronized ChangeNumber putLocalOperation(PluginOperation operation) argument
165 return _putLocalOperation(operation);
169 * operation.
171 * @param operation Th
175 _putLocalOperation(PluginOperation operation) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/types/operation/
H A DPostOperationBindOperation.java27 package org.opends.server.types.operation;
41 * post-operation plugins for bind operations. Note that this
54 * Retrieves the authentication type for this bind operation.
56 * @return The authentication type for this bind operation.
74 * Retrieves the raw, unprocessed bind DN for this bind operation as
78 * @return The raw, unprocessed bind DN for this bind operation as
86 * Retrieves the bind DN for this bind operation.
88 * @return The bind DN for this bind operation.
96 * operation.
99 * operation
[all...]
H A DPreOperationAddOperation.java27 package org.opends.server.types.operation;
46 * pre-operation plugins for add operations. Note that this interface
105 * pre-operation plugin processing is invoked after access control
119 * that pre-operation plugin processing is invoked after access
158 * pre-operation plugin processing is invoked after access control
174 * pre-operation processing is invoked after access control and
H A DPreOperationSearchOperation.java28 package org.opends.server.types.operation;
49 * pre-operation plugins for search operations. Note that this
74 * Retrieves the base DN for this search operation.
76 * @return The base DN for this search operation.
83 * Retrieves the scope for this search operation.
85 * @return The scope for this search operation.
93 * operation.
96 * operation.
103 * Retrieves the size limit for this search operation.
105 * @return The size limit for this search operation
[all...]
H A DPreParseBindOperation.java27 package org.opends.server.types.operation;
51 * Retrieves the authentication type for this bind operation.
53 * @return The authentication type for this bind operation.
83 * Retrieves the raw, unprocessed bind DN for this bind operation as
87 * @return The raw, unprocessed bind DN for this bind operation as
95 * Specifies the raw, unprocessed bind DN for this bind operation.
105 * operation.
108 * operation.
116 * operation.
119 * this bind operation
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/workflowelement/externalchangelog/
H A DECLWorkflowElement.java54 * e-g an entity that handles the processing of an operation against the ECL.
115 public void execute(Operation operation) throws CanceledOperationException { argument
116 switch (operation.getOperationType())
120 new ECLSearchOperation((SearchOperation) operation);
124 // There is no processing for an abandon operation.
134 throw new AssertionError("Attempted to execute an invalid operation " +
135 "type: " + operation.getOperationType() +
136 " (" + operation + ")");
143 * Attaches the current local operation to the global operation s
[all...]
/forgerock/opendj2/src/server/org/opends/server/api/
H A DExtendedOperationHandler.java65 * Builds an extended operation.
73 * Builds an extended operation.
86 * Initializes this extended operation handler based on the
91 * @param config The extended operation handler configuration that
93 * this extended operation handler.
115 * this extended operation handler. It should be possible to call
116 * this method on an uninitialized extended operation handler
117 * instance in order to determine whether the extended operation
124 * @param configuration The extended operation handler
132 * for this extended operation handle
165 processExtendedOperation(ExtendedOperation operation) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/core/
H A DWorkflowTopologyNode.java88 * Executes an operation on a set of data being identified by the
91 * @param operation the operation to execute
93 * @throws CanceledOperationException if this operation should
96 public void execute(Operation operation) argument
98 // Execute the operation
99 getWorkflowImpl().execute(operation);
101 // For subtree search operation we need to go through the subordinate
103 if (operation.getOperationType() == OperationType.SEARCH)
105 executeSearchOnSubordinates((SearchOperation) operation);
[all...]

Completed in 127 milliseconds

<<11121314151617181920>>