org.eclipse.microprofile.jwt.ClaimLiteral Maven / Gradle / Ivy
/*
* Copyright (c) 2016-2018 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.eclipse.microprofile.jwt;
import jakarta.enterprise.util.AnnotationLiteral;
/**
* Annotation literal for {@link Claim}
*/
public class ClaimLiteral extends AnnotationLiteral implements Claim {
private static final long serialVersionUID = 1L;
private String value = "";
private Claims standard = Claims.UNKNOWN;
/**
* Creates a default value Claim literal
*/
public ClaimLiteral() {
}
/**
* Construct a Claim literal from a string name of a claim
*
* @param value
* - the string name for claim
*/
public ClaimLiteral(String value) {
this.value = value;
}
/**
* Construct a Claim literal from a standard claim defined in {@linkplain Claims}
*
* @param standard
* - the claim enum value
*/
public ClaimLiteral(Claims standard) {
this.standard = standard;
}
@Override
public String value() {
return value;
}
@Override
public Claims standard() {
return standard;
}
}