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

PLINK-372: set false for boolean values by default #243

Merged
merged 1 commit into from
Feb 27, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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