-
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.
Incremental commit: - OauthRPExtension built completely from XML upload (marshall and unmarshall complete) - Representation updated for UI output (accepting for build from UI still TODO)
- Loading branch information
Showing
5 changed files
with
134 additions
and
33 deletions.
There are no files selected for viewing
27 changes: 11 additions & 16 deletions
27
.../tier/shibboleth/admin/ui/domain/frontend/ServiceProviderSsoDescriptorRepresentation.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 |
|---|---|---|
| @@ -1,31 +1,26 @@ | ||
| package edu.internet2.tier.shibboleth.admin.ui.domain.frontend; | ||
|
|
||
| import lombok.Getter; | ||
| import lombok.Setter; | ||
|
|
||
| import java.io.Serializable; | ||
| import java.util.ArrayList; | ||
| import java.util.HashMap; | ||
| import java.util.List; | ||
| import java.util.Map; | ||
|
|
||
| @Getter | ||
| @Setter | ||
| public class ServiceProviderSsoDescriptorRepresentation implements Serializable { | ||
|
|
||
|
|
||
| private static final long serialVersionUID = 8366502466924209389L; | ||
|
|
||
| private String protocolSupportEnum; | ||
|
|
||
| private List<String> nameIdFormats = new ArrayList<>(); | ||
|
|
||
| public String getProtocolSupportEnum() { | ||
| return protocolSupportEnum; | ||
| } | ||
|
|
||
| public void setProtocolSupportEnum(String protocolSupportEnum) { | ||
| this.protocolSupportEnum = protocolSupportEnum; | ||
| } | ||
|
|
||
| public List<String> getNameIdFormats() { | ||
| return nameIdFormats; | ||
| } | ||
| private Map<String,Object> extensions = new HashMap<>(); | ||
|
|
||
| public void setNameIdFormats(List<String> nameIdFormats) { | ||
| this.nameIdFormats = nameIdFormats; | ||
| public void addExtensions(String name, Map<String, Object> value) { | ||
| extensions.put(name, value); | ||
| } | ||
| } | ||
| } |
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
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
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
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