net.gini.jersey.security.smime.EnvelopedOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jersey-smime Show documentation
Show all versions of jersey-smime Show documentation
Backport of the S/MIME features from resteasy-security
The newest version!
package net.gini.jersey.security.smime;
import javax.ws.rs.core.MediaType;
/**
* @author Bill Burke
* @version $Revision: 1 $
*/
public class EnvelopedOutput extends SMIMEOutput {
public EnvelopedOutput(Object obj, String mediaType) {
super(obj, mediaType);
}
public EnvelopedOutput(Object obj, MediaType mediaType) {
super(obj, mediaType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy