All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rootservices.jwt.entity.jwk.SymmetricKey Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.rootservices.jwt.entity.jwk;

import java.util.Optional;

/**
 * Created by tommackenzie on 11/4/15.
 */
public class SymmetricKey extends Key {
    private String key;

    public SymmetricKey(Optional keyId, String key, Use use) {
        super(keyId, KeyType.OCT, use);
        this.key = key;
    }

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy