Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Norbert Klasen
JLDAP
Commits
183e49dc
Commit
183e49dc
authored
Aug 17, 2006
by
Nachiappan Palaniappan
Browse files
Made changes to listen events with the changed LDAP Response structure as well.
parent
0c5c4f69
Changes
1
Hide whitespace changes
Inline
Side-by-side
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