Considering protocol changes in tests.

This commit is contained in:
lotodore
2011-10-03 12:44:57 +00:00
parent 828fc6bfac
commit b5b698ce44
8 changed files with 469 additions and 37 deletions
@@ -41,6 +41,21 @@ import org.bn.types.*;
private Guid myLastSessionId = null;
@ASN1String( name = "",
stringType = UniversalTag.UTF8String , isUCS = false )
@ASN1ValueRangeConstraint (
min = 1L,
max = 64L
)
@ASN1Element ( name = "authServerPassword", isOptional = true , hasTag = false , hasDefaultValue = false )
private String authServerPassword = null;
@ASN1PreparedElement
@ASN1Choice ( name = "login" )
@@ -195,6 +210,22 @@ import org.bn.types.*;
public String getAuthServerPassword () {
return this.authServerPassword;
}
public boolean isAuthServerPasswordPresent () {
return this.authServerPassword != null;
}
public void setAuthServerPassword (String value) {
this.authServerPassword = value;
}
public LoginChoiceType getLogin () {
return this.login;
}