![JAR search and dependency download from the Maven repository](/logo.png)
org.id4me.config.Id4meClaimsParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of relying-party-api Show documentation
Show all versions of relying-party-api Show documentation
ID4me RelyingParty API prototype
The newest version!
/*
* Copyright (C) 2016-2020 OX Software GmbH
* Developed by Sven Woltmann [email protected]
* See the LICENSE file for licensing conditions
* SPDX-License-Identifier: MIT
*/
package org.id4me.config;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author Sven Woltmann
*/
public class Id4meClaimsParameters {
private List entries = new ArrayList<>();
public Id4meClaimsParameters addEntry(Entry entry) {
entries.add(entry);
return this;
}
public List getEntries() {
return entries;
}
public static class Entry {
private String name;
private boolean essential;
private String reason;
public String getName() {
return name;
}
public Entry setName(String name) {
this.name = name;
return this;
}
public boolean isEssential() {
return essential;
}
public Entry setEssential(boolean essential) {
this.essential = essential;
return this;
}
public String getReason() {
return reason;
}
public Entry setReason(String reason) {
this.reason = reason;
return this;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy