org.wildfly.security.jose.jwk.ECPublicJWK Maven / Gradle / Ivy
The newest version!
/*
* JBoss, Home of Professional Open Source.
* Copyright 2020 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* 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.wildfly.security.jose.jwk;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* An EC public JWK.
*
* @author Stian Thorgersen
* @since 1.14.0
*/
public class ECPublicJWK extends JWK {
public static final String EC = "EC";
public static final String CRV = "crv";
public static final String X = "x";
public static final String Y = "y";
@JsonProperty(CRV)
private String crv;
@JsonProperty(X)
private String x;
@JsonProperty(Y)
private String y;
public String getCrv() {
return crv;
}
public void setCrv(String crv) {
this.crv = crv;
}
public String getX() {
return x;
}
public void setX(String x) {
this.x = x;
}
public String getY() {
return y;
}
public void setY(String y) {
this.y = y;
}
}