Skip to content

Commit

Permalink
[SHIBUI-906]
Browse files Browse the repository at this point in the history
Forgot to include this with the previous commit.
  • Loading branch information
Bill Smith committed Oct 8, 2018
1 parent 98bf498 commit c8643d8
Showing 1 changed file with 87 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
package edu.internet2.tier.shibboleth.admin.ui.domain;

import java.util.Collection;
import java.util.List;

/**
* @author Bill Smith (wsmith@unicon.net)
*/
public class RelyingPartyOverrideProperty {
private String name;
private String displayName;
private String displayType;
private String helpText;
private String persistType;
private String persistValue;
private List<String> defaultValues;
private Collection<String> persistValues;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public String getDisplayName() {
return displayName;
}

public void setDisplayName(String displayName) {
this.displayName = displayName;
}

public String getDisplayType() {
return displayType;
}

public void setDisplayType(String displayType) {
this.displayType = displayType;
}

public String getHelpText() {
return helpText;
}

public void setHelpText(String helpText) {
this.helpText = helpText;
}

public String getPersistType() {
return persistType;
}

public void setPersistType(String persistType) {
this.persistType = persistType;
}

public String getPersistValue() {
return persistValue;
}

public void setPersistValue(String persistValue) {
this.persistValue = persistValue;
}

public List<String> getDefaultValues() {
return defaultValues;
}

public void setDefaultValues(List<String> defaultValues) {
this.defaultValues = defaultValues;
}

public Collection<String> getPersistValues() {
return persistValues;
}

public void setPersistValues(Collection<String> persistValues) {
this.persistValues = persistValues;
}

@Override
public String toString() {
return "RelyingPartyOverrideProperty{" + "\nname='" + name + '\'' + ", \ndisplayName='" + displayName + '\'' + ", \ndisplayType='" + displayType + '\'' + ", \nhelpText='" + helpText + '\'' + ", \npersistType='" + persistType + '\'' + ", \npersistValue='" + persistValue + '\'' + ", \ndefaultValues=" + defaultValues + ", \npersistValues=" + persistValues + "\n}";
}
}

0 comments on commit c8643d8

Please sign in to comment.