| | |
| | | */ |
| | | public final ByteString getRawEntryDN() |
| | | { |
| | | |
| | | return rawEntryDN; |
| | | } |
| | | |
| | |
| | | */ |
| | | public final void setRawEntryDN(ByteString rawEntryDN) |
| | | { |
| | | |
| | | this.rawEntryDN = rawEntryDN; |
| | | |
| | | entryDN = null; |
| | |
| | | */ |
| | | public final DN getEntryDN() |
| | | { |
| | | |
| | | return entryDN; |
| | | } |
| | | |
| | |
| | | */ |
| | | public final List<LDAPModification> getRawModifications() |
| | | { |
| | | |
| | | return rawModifications; |
| | | } |
| | | |
| | |
| | | */ |
| | | public final void addRawModification(LDAPModification rawModification) |
| | | { |
| | | |
| | | rawModifications.add(rawModification); |
| | | |
| | | modifications = null; |
| | |
| | | */ |
| | | public final void setRawModifications(List<LDAPModification> rawModifications) |
| | | { |
| | | |
| | | this.rawModifications = rawModifications; |
| | | |
| | | modifications = null; |
| | |
| | | */ |
| | | public final List<Modification> getModifications() |
| | | { |
| | | |
| | | return modifications; |
| | | } |
| | | |
| | |
| | | public final void addModification(Modification modification) |
| | | throws DirectoryException |
| | | { |
| | | |
| | | modifiedEntry.applyModification(modification); |
| | | modifications.add(modification); |
| | | } |
| | |
| | | */ |
| | | public final Entry getCurrentEntry() |
| | | { |
| | | |
| | | return currentEntry; |
| | | } |
| | | |
| | |
| | | */ |
| | | public final Entry getModifiedEntry() |
| | | { |
| | | |
| | | return modifiedEntry; |
| | | } |
| | | |
| | |
| | | */ |
| | | public final List<AttributeValue> getCurrentPasswords() |
| | | { |
| | | |
| | | return currentPasswords; |
| | | } |
| | | |
| | |
| | | */ |
| | | public final List<AttributeValue> getNewPasswords() |
| | | { |
| | | |
| | | return newPasswords; |
| | | } |
| | | |
| | |
| | | @Override() |
| | | public final long getProcessingStartTime() |
| | | { |
| | | |
| | | return processingStartTime; |
| | | } |
| | | |
| | |
| | | @Override() |
| | | public final long getProcessingStopTime() |
| | | { |
| | | |
| | | return processingStopTime; |
| | | } |
| | | |
| | |
| | | @Override() |
| | | public final long getProcessingTime() |
| | | { |
| | | |
| | | return (processingStopTime - processingStartTime); |
| | | } |
| | | |
| | |
| | | */ |
| | | public final long getChangeNumber() |
| | | { |
| | | |
| | | return changeNumber; |
| | | } |
| | | |
| | |
| | | */ |
| | | public final void setChangeNumber(long changeNumber) |
| | | { |
| | | |
| | | this.changeNumber = changeNumber; |
| | | } |
| | | |
| | |
| | | @Override() |
| | | public final List<Control> getResponseControls() |
| | | { |
| | | |
| | | return responseControls; |
| | | } |
| | | |
| | |
| | | @Override() |
| | | public final void run() |
| | | { |
| | | |
| | | setResultCode(ResultCode.UNDEFINED); |
| | | |
| | | |
| | |
| | | @Override() |
| | | public final CancelResult cancel(CancelRequest cancelRequest) |
| | | { |
| | | |
| | | this.cancelRequest = cancelRequest; |
| | | |
| | | CancelResult cancelResult = getCancelResult(); |
| | |
| | | @Override() |
| | | public final CancelRequest getCancelRequest() |
| | | { |
| | | |
| | | return cancelRequest; |
| | | } |
| | | |
| | |
| | | @Override() |
| | | boolean setCancelRequest(CancelRequest cancelRequest) |
| | | { |
| | | |
| | | this.cancelRequest = cancelRequest; |
| | | return true; |
| | | } |
| | |
| | | @Override() |
| | | public final void toString(StringBuilder buffer) |
| | | { |
| | | |
| | | buffer.append("ModifyOperation(connID="); |
| | | buffer.append(clientConnection.getConnectionID()); |
| | | buffer.append(", opID="); |