| | |
| | | */ |
| | | 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 String getRawAttributeType() |
| | | { |
| | | |
| | | return rawAttributeType; |
| | | } |
| | | |
| | |
| | | */ |
| | | public final void setRawAttributeType(String rawAttributeType) |
| | | { |
| | | |
| | | this.rawAttributeType = rawAttributeType; |
| | | |
| | | attributeType = null; |
| | |
| | | */ |
| | | public final AttributeType getAttributeType() |
| | | { |
| | | |
| | | return attributeType; |
| | | } |
| | | |
| | |
| | | */ |
| | | public final ByteString getAssertionValue() |
| | | { |
| | | |
| | | return assertionValue; |
| | | } |
| | | |
| | |
| | | */ |
| | | public final void setAssertionValue(ByteString assertionValue) |
| | | { |
| | | |
| | | this.assertionValue = assertionValue; |
| | | } |
| | | |
| | |
| | | */ |
| | | public final Entry getEntryToCompare() |
| | | { |
| | | |
| | | return entry; |
| | | } |
| | | |
| | |
| | | @Override() |
| | | public final long getProcessingStartTime() |
| | | { |
| | | |
| | | return processingStartTime; |
| | | } |
| | | |
| | |
| | | @Override() |
| | | public final long getProcessingStopTime() |
| | | { |
| | | |
| | | return processingStopTime; |
| | | } |
| | | |
| | |
| | | @Override() |
| | | public final long getProcessingTime() |
| | | { |
| | | |
| | | return (processingStopTime - processingStartTime); |
| | | } |
| | | |
| | |
| | | @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("CompareOperation(connID="); |
| | | buffer.append(clientConnection.getConnectionID()); |
| | | buffer.append(", opID="); |