-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(config-api): saml metedata elements save (#7804)
* feat(config-api): saml plugin changes for new fields Signed-off-by: pujavs <[email protected]> * feat(config-api): kc link plugin endpoint Signed-off-by: pujavs <[email protected]> * feat(config-api): kc link plugin endpoint Signed-off-by: pujavs <[email protected]> * feat(config-api): kc link plugin endpoint Signed-off-by: pujavs <[email protected]> * feat(config-api): saml plugin changes Signed-off-by: pujavs <[email protected]> * feat(config-api): kc plugin changes Signed-off-by: pujavs <[email protected]> * feat(config-api): saml plugin changes for metadata elements Signed-off-by: pujavs <[email protected]> * feat(config-api): resolved merge conflict Signed-off-by: pujavs <[email protected]> * feat(config-api): resolved merge conflict Signed-off-by: pujavs <[email protected]> * feat(config-api): saml metedata elements save Signed-off-by: pujavs <[email protected]> --------- Signed-off-by: pujavs <[email protected]> Former-commit-id: 37721e7
- Loading branch information
Showing
13 changed files
with
399 additions
and
275 deletions.
There are no files selected for viewing
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
55 changes: 55 additions & 0 deletions
55
...lugins/kc-saml-plugin/src/main/java/io/jans/configapi/plugin/saml/model/SAMLMetadata.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,55 @@ | ||
/* | ||
* Janssen Project software is available under the MIT License (2008). See http://opensource.org/licenses/MIT for full text. | ||
* | ||
* Copyright (c) 2020, Janssen Project | ||
*/ | ||
|
||
package io.jans.configapi.plugin.saml.model; | ||
|
||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
|
||
import java.io.Serializable; | ||
|
||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class SAMLMetadata implements Serializable { | ||
|
||
private static final long serialVersionUID = 1L; | ||
private String nameIDPolicyFormat; | ||
private String entityId; | ||
private String singleLogoutServiceUrl; | ||
|
||
public String getNameIDPolicyFormat() { | ||
return nameIDPolicyFormat; | ||
} | ||
|
||
public void setNameIDPolicyFormat(String nameIDPolicyFormat) { | ||
this.nameIDPolicyFormat = nameIDPolicyFormat; | ||
} | ||
|
||
public String getEntityId() { | ||
return entityId; | ||
} | ||
|
||
public void setEntityId(String entityId) { | ||
this.entityId = entityId; | ||
} | ||
|
||
public String getSingleLogoutServiceUrl() { | ||
return singleLogoutServiceUrl; | ||
} | ||
|
||
public void setSingleLogoutServiceUrl(String singleLogoutServiceUrl) { | ||
this.singleLogoutServiceUrl = singleLogoutServiceUrl; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "SPMetadata [nameIDPolicyFormat=" + nameIDPolicyFormat + ", entityId=" + entityId | ||
+ ", singleLogoutServiceUrl=" + singleLogoutServiceUrl + "]"; | ||
} | ||
|
||
|
||
} |
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
Oops, something went wrong.