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

public class SymmetricKey
implements org.apache.oltu.jose.jws.signature.SymmetricKey {
    byte[] key;

    public SymmetricKey(byte[] key) {
        this.key = key;
    }

    public byte[] getKey() {
        return this.key;
    }
}