-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
There are no files selected for viewing
87 changes: 87 additions & 0 deletions
87
...main/java/edu/internet2/tier/shibboleth/admin/ui/domain/RelyingPartyOverrideProperty.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}"; | ||
} | ||
} |