// 
// Decompiled by Procyon v0.6.0
// 

package com.nimbusds.jose.util;

import java.util.Objects;
import com.nimbusds.jose.shaded.jcip.Immutable;

@Immutable
public class Resource
{
    private final String content;
    private final String contentType;
    
    public Resource(final String content, final String contentType) {
        this.content = Objects.requireNonNull(content);
        this.contentType = contentType;
    }
    
    public String getContent() {
        return this.content;
    }
    
    public String getContentType() {
        return this.contentType;
    }
}
