private boolean passThruIsOverriden = false;
private boolean forceAttributePush = false;
private boolean forceAttributeNoPush = false;
+ private boolean singleAssertion = false;
private boolean defaultToPOST = true;
private boolean wantsAssertionsSigned = false;
private int preferredArtifactType = 1;
return forceAttributeNoPush;
}
+ public boolean singleAssertion() {
+ return singleAssertion;
+ }
+
public boolean defaultToPOSTProfile() {
return defaultToPOST;
return credential;
}
}
-
}
/**
return wrapped.forceAttributeNoPush();
}
+ public boolean singleAssertion() {
+
+ return wrapped.singleAssertion();
+ }
+
public boolean defaultToPOSTProfile() {
return wrapped.defaultToPOSTProfile();
return false;
}
+ public boolean singleAssertion() {
+
+ return false;
+ }
+
public boolean defaultToPOSTProfile() {
return true;