Skip to content
This repository has been archived by the owner on Jun 10, 2019. It is now read-only.

Commit

Permalink
Merge pull request #243 from anilsaldhana/master
Browse files Browse the repository at this point in the history
PLINK-372: set false for boolean values by default
  • Loading branch information
anilsaldhana committed Feb 27, 2014
2 parents 3392519 + 86e0601 commit 922d765
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class AttributeConsumingServiceType {

protected int index;

protected Boolean isDefault;
protected Boolean isDefault = Boolean.FALSE;

public AttributeConsumingServiceType(int index) {
this.index = index;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class IDPSSODescriptorType extends SSODescriptorType {

protected List<AttributeType> attribute = new ArrayList<AttributeType>();

protected Boolean wantAuthnRequestsSigned;
protected Boolean wantAuthnRequestsSigned = false;

public IDPSSODescriptorType(List<String> protocolSupport) {
super(protocolSupport);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public class SPSSODescriptorType extends SSODescriptorType {

protected List<AttributeConsumingServiceType> attributeConsumingService = new ArrayList<AttributeConsumingServiceType>();

protected boolean authnRequestsSigned;
protected boolean authnRequestsSigned = false;

protected boolean wantAssertionsSigned;
protected boolean wantAssertionsSigned = false;

public SPSSODescriptorType(List<String> protocolSupport) {
super(protocolSupport);
Expand Down

0 comments on commit 922d765

Please sign in to comment.