Class JweEncryptionInput
- java.lang.Object
-
- org.apache.cxf.rs.security.jose.jwe.JweEncryptionInput
-
public class JweEncryptionInput extends Object
-
-
Constructor Summary
Constructors Constructor Description JweEncryptionInput()JweEncryptionInput(JweHeaders jweHeaders)JweEncryptionInput(JweHeaders jweHeaders, byte[] content)JweEncryptionInput(JweHeaders jweHeaders, byte[] content, byte[] aad)JweEncryptionInput(JweHeaders jweHeaders, byte[] content, byte[] cek, byte[] iv)JweEncryptionInput(JweHeaders jweHeaders, byte[] content, byte[] aad, byte[] cek, byte[] iv)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getAad()byte[]getCek()byte[]getContent()byte[]getIv()JweHeadersgetJweHeaders()booleanisContentEncryptionRequired()voidsetAad(byte[] aad)voidsetCek(byte[] cek)voidsetContent(byte[] content)voidsetContentEncryptionRequired(boolean required)voidsetIv(byte[] iv)voidsetJweHeaders(JweHeaders jweHeaders)
-
-
-
Constructor Detail
-
JweEncryptionInput
public JweEncryptionInput()
-
JweEncryptionInput
public JweEncryptionInput(JweHeaders jweHeaders)
-
JweEncryptionInput
public JweEncryptionInput(JweHeaders jweHeaders, byte[] content)
-
JweEncryptionInput
public JweEncryptionInput(JweHeaders jweHeaders, byte[] content, byte[] aad)
-
JweEncryptionInput
public JweEncryptionInput(JweHeaders jweHeaders, byte[] content, byte[] cek, byte[] iv)
-
JweEncryptionInput
public JweEncryptionInput(JweHeaders jweHeaders, byte[] content, byte[] aad, byte[] cek, byte[] iv)
-
-
Method Detail
-
getJweHeaders
public JweHeaders getJweHeaders()
-
setJweHeaders
public void setJweHeaders(JweHeaders jweHeaders)
-
getCek
public byte[] getCek()
-
setCek
public void setCek(byte[] cek)
-
getIv
public byte[] getIv()
-
setIv
public void setIv(byte[] iv)
-
getAad
public byte[] getAad()
-
setAad
public void setAad(byte[] aad)
-
getContent
public byte[] getContent()
-
setContent
public void setContent(byte[] content)
-
isContentEncryptionRequired
public boolean isContentEncryptionRequired()
-
setContentEncryptionRequired
public void setContentEncryptionRequired(boolean required)
-
-