Use data instead of configuration store

This commit is contained in:
René Pfeuffer
2020-09-30 16:26:43 +02:00
parent 12ab218eba
commit e3e96f7813
3 changed files with 12 additions and 10 deletions

View File

@@ -31,6 +31,7 @@ import lombok.NoArgsConstructor;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.ArrayList;
import java.util.Collection;
import java.util.function.Predicate;
@@ -41,6 +42,7 @@ import static java.util.stream.Collectors.toList;
@NoArgsConstructor(access = AccessLevel.PRIVATE)
@Getter
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement
class ApiKeyCollection {
private Collection<ApiKeyWithPassphrase> keys;