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
@@ -137,21 +137,6 @@ import org.bn.types.*;
private JoinGameActionChoiceType joinGameAction = null;
@ASN1String( name = "",
stringType = UniversalTag.UTF8String , isUCS = false )
@ASN1ValueRangeConstraint (
min = 1L,
max = 64L
)
@ASN1Element ( name = "password", isOptional = true , hasTag = false , hasDefaultValue = false )
private String password = null;
@ASN1Boolean( name = "" )
@ASN1Element ( name = "autoLeave", isOptional = false , hasTag = false , hasDefaultValue = false )
@@ -172,22 +157,6 @@ import org.bn.types.*;
public String getPassword () {
return this.password;
}
public boolean isPasswordPresent () {
return this.password != null;
}
public void setPassword (String value) {
this.password = value;
}
public Boolean getAutoLeave () {
return this.autoLeave;
}