PrivateKey.java 521 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  org.apache.oltu.jose.jws.signature.SigningKey
 */
package com.adobe.granite.oauth.jwt.impl;

import org.apache.oltu.jose.jws.signature.SigningKey;

public class PrivateKey
implements SigningKey {
    java.security.PrivateKey privateKey;

    public PrivateKey(java.security.PrivateKey privateKey) {
        this.privateKey = privateKey;
    }

    public java.security.PrivateKey getPrivateKey() {
        return this.privateKey;
    }
}