Stephan Richter
1 month ago
10 changed files with 94 additions and 19 deletions
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
/* © SRSoftware 2024 */ |
||||
package de.srsoftware.oidc.api; |
||||
|
||||
|
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
|
||||
public class Error<T> implements Result<T> { |
||||
private final String cause; |
||||
private Map<String, Object> metadata; |
||||
|
||||
public Error(String cause) { |
||||
this.cause = cause; |
||||
} |
||||
|
||||
public String cause() { |
||||
return cause; |
||||
} |
||||
|
||||
@Override |
||||
public boolean isError() { |
||||
return true; |
||||
} |
||||
|
||||
public static <T> Error<T> message(String text) { |
||||
return new Error<T>(text); |
||||
} |
||||
|
||||
public Error<T> metadata(Object... tokens) { |
||||
metadata = new HashMap<String, Object>(); |
||||
for (int i = 0; i < tokens.length - 1; i += 2) { |
||||
metadata.put(tokens[i].toString(), tokens[i + 1]); |
||||
} |
||||
return this; |
||||
} |
||||
} |
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
/* © SRSoftware 2024 */ |
||||
package de.srsoftware.oidc.api; |
||||
|
||||
|
||||
public class Payload<T> implements Result<T> { |
||||
private final T object; |
||||
|
||||
public Payload(T object) { |
||||
this.object = object; |
||||
} |
||||
|
||||
public static <T> Payload<T> of(T object) { |
||||
return new Payload<>(object); |
||||
} |
||||
|
||||
@Override |
||||
public boolean isError() { |
||||
return false; |
||||
} |
||||
|
||||
public T get() { |
||||
return object; |
||||
} |
||||
} |
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
/* © SRSoftware 2024 */ |
||||
package de.srsoftware.oidc.api; |
||||
|
||||
public interface Result<T> { |
||||
public boolean isError(); |
||||
} |
Loading…
Reference in new issue