|
|
Author: elecharny
Date: Sun Jun 5 15:53:05 2005
New Revision: 180167
URL: http://svn.apache.org/viewcvs?rev=180167&view=rev
Log:
Minor refactoring.
Modified:
directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/codec/grammars/BindResponseGrammar.java
Modified:
directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/codec/grammars/BindResponseGrammar.java
URL:
http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/codec/grammars/BindResponseGrammar.java?rev=180167&r1=180166&r2=180167&view=diff
==============================================================================
---
directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/codec/grammars/BindResponseGrammar.java
(original)
+++
directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/codec/grammars/BindResponseGrammar.java
Sun Jun 5 15:53:05 2005
@@ -67,16 +67,16 @@
//============================================================================================
// BindResponse Message
//============================================================================================
- // BindResponse ::= APPLICATION 1] SEQUENCE {
+ // BindResponse ::= [APPLICATION 1] SEQUENCE {
// COMPONENTS OF LDAPResult,
// ...
// Nothing to do
super.transitions[LdapStatesEnum.BIND_RESPONSE_TAG][0x61] = new
GrammarTransition(
LdapStatesEnum.BIND_RESPONSE_TAG,
LdapStatesEnum.BIND_RESPONSE_LENGTH, null );
- // We have to allocate a BindRequestPOJO
// LdapMessage ::= ... BindResponse ...
// BindResponse ::= [APPLICATION 1] SEQUENCE { ... (Length)
+ // We have to allocate a BindResponsePOJO
super.transitions[LdapStatesEnum.BIND_RESPONSE_LENGTH][0x61] = new
GrammarTransition(
LdapStatesEnum.BIND_RESPONSE_LENGTH,
LdapStatesEnum.BIND_RESPONSE_VALUE,
new GrammarAction( "Init BindReponse" )
|
|