Package org.apache.wss4j.common.ext
Class AttachmentRequestCallback
- java.lang.Object
-
- org.apache.wss4j.common.ext.AttachmentRequestCallback
-
-
Constructor Summary
Constructors Constructor Description AttachmentRequestCallback()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAttachmentId()The requested attachment which will be secured.List<Attachment>getAttachments()booleanisRemoveAttachments()voidsetAttachmentId(String attachmentId)voidsetAttachments(List<Attachment> attachments)voidsetRemoveAttachments(boolean removeAttachments)Set whether to remove the attachments when we're reading them.
-
-
-
Method Detail
-
getAttachmentId
public String getAttachmentId()
The requested attachment which will be secured. If null all attachments are requested
-
setAttachmentId
public void setAttachmentId(String attachmentId)
-
getAttachments
public List<Attachment> getAttachments()
-
setAttachments
public void setAttachments(List<Attachment> attachments)
-
isRemoveAttachments
public boolean isRemoveAttachments()
-
setRemoveAttachments
public void setRemoveAttachments(boolean removeAttachments)
Set whether to remove the attachments when we're reading them. The default is "true".
-
-