Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
openldap
JLDAP
Commits
183e49dc
Commit
183e49dc
authored
Aug 17, 2006
by
Nachiappan Palaniappan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made changes to listen events with the changed LDAP Response structure as well.
parent
0c5c4f69
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
com/novell/ldap/LDAPResponse.java
com/novell/ldap/LDAPResponse.java
+5
-0
No files found.
com/novell/ldap/LDAPResponse.java
View file @
183e49dc
...
...
@@ -27,6 +27,7 @@ import com.novell.ldap.rfc2251.RfcAddResponse;
import
com.novell.ldap.rfc2251.RfcCompareResponse
;
import
com.novell.ldap.rfc2251.RfcControls
;
import
com.novell.ldap.rfc2251.RfcDelResponse
;
import
com.novell.ldap.rfc2251.RfcIntermediateResponse
;
import
com.novell.ldap.rfc2251.RfcLDAPDN
;
import
com.novell.ldap.rfc2251.RfcLDAPMessage
;
import
com.novell.ldap.rfc2251.RfcLDAPString
;
...
...
@@ -343,6 +344,10 @@ public class LDAPResponse extends LDAPMessage
if
(
exception
!=
null
)
{
return
exception
.
getResultCode
();
}
if
(((
RfcResponse
)
message
.
getResponse
())
instanceof
RfcIntermediateResponse
)
return
0
;
return
((
RfcResponse
)
message
.
getResponse
()).
getResultCode
().
intValue
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment