Considering protocol changes in tests.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user