LinkedResource
Inheritance: java.lang.Object, com.aspose.email.AttachmentBase
public class LinkedResource extends AttachmentBase
Represents an embedded resource in a message.
Constructors
Constructor | Description |
---|---|
LinkedResource(String fileName) | Initializes a new instance of the LinkedResource class. |
LinkedResource(String fileName, String mediaType) | Initializes a new instance of the LinkedResource class. |
LinkedResource(String fileName, ContentType contentType) | Initializes a new instance of the LinkedResource class. |
LinkedResource(InputStream contentStream) | Initializes a new instance of the LinkedResource class. |
LinkedResource(InputStream contentStream, String mediaType) | Initializes a new instance of the LinkedResource class. |
LinkedResource(InputStream contentStream, ContentType contentType) | Initializes a new instance of the LinkedResource class. |
Methods
Method | Description |
---|---|
close() | |
createLinkedResourceFromString(String content) | Creates the linked resource from string. |
createLinkedResourceFromString(String content, ContentType contentType) | Creates the linked resource from string. |
createLinkedResourceFromString(String content, Charset contentEncoding, String mediaType) | Creates the linked resource from string. |
dispose() | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. |
equals(Object arg0) | |
getClass() | |
getContentDisposition() | Gets Content-Disposition header |
getContentId() | Gets or sets the content id. |
getContentLink() | Gets or sets a URI that the resource must match. |
getContentStream() | Gets or sets the content stream. |
getContentType() | Gets or sets the type of the content. |
getHeaders() | Gets headers collection of attachment. |
getTransferEncoding() | Gets or sets the transfer encoding. |
hashCode() | |
notify() | |
notifyAll() | |
save(OutputStream stream) | Saves the specified stream. |
save(String fileName) | Saves the specified file name. |
setContentId(String value) | Gets or sets the content id. |
setContentLink(URI value) | Gets or sets a URI that the resource must match. |
setContentStream(InputStream value) | Gets or sets the content stream. |
setContentType(ContentType value) | Gets or sets the type of the content. |
setTransferEncoding(int value) | Gets or sets the transfer encoding. |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
LinkedResource(String fileName)
public LinkedResource(String fileName)
Initializes a new instance of the LinkedResource class.
Parameters:
Parameter | Type | Description |
---|---|---|
fileName | java.lang.String | The file name that holds the content for this resource. |
LinkedResource(String fileName, String mediaType)
public LinkedResource(String fileName, String mediaType)
Initializes a new instance of the LinkedResource class.
Parameters:
Parameter | Type | Description |
---|---|---|
fileName | java.lang.String | The file name that holds the content for this resource. |
mediaType | java.lang.String | Internet media type. |
LinkedResource(String fileName, ContentType contentType)
public LinkedResource(String fileName, ContentType contentType)
Initializes a new instance of the LinkedResource class.
Parameters:
Parameter | Type | Description |
---|---|---|
fileName | java.lang.String | The file name that holds the content for this resource. |
contentType | ContentType | The type of content. |
LinkedResource(InputStream contentStream)
public LinkedResource(InputStream contentStream)
Initializes a new instance of the LinkedResource class.
Parameters:
Parameter | Type | Description |
---|---|---|
contentStream | java.io.InputStream | A stream that contains the content for this resource. |
LinkedResource(InputStream contentStream, String mediaType)
public LinkedResource(InputStream contentStream, String mediaType)
Initializes a new instance of the LinkedResource class.
Parameters:
Parameter | Type | Description |
---|---|---|
contentStream | java.io.InputStream | A stream that contains the content for this resource. |
mediaType | java.lang.String | Internet media type. |
LinkedResource(InputStream contentStream, ContentType contentType)
public LinkedResource(InputStream contentStream, ContentType contentType)
Initializes a new instance of the LinkedResource class.
Parameters:
Parameter | Type | Description |
---|---|---|
contentStream | java.io.InputStream | A stream that contains the content for this resource. |
contentType | ContentType | The type of content. |
close()
public void close()
createLinkedResourceFromString(String content)
public static LinkedResource createLinkedResourceFromString(String content)
Creates the linked resource from string.
Parameters:
Parameter | Type | Description |
---|---|---|
content | java.lang.String | A string that contains the resource to be included in the email attachment. |
Returns: LinkedResource - A LinkedResource object that contains the embedded resource.
createLinkedResourceFromString(String content, ContentType contentType)
public static LinkedResource createLinkedResourceFromString(String content, ContentType contentType)
Creates the linked resource from string.
Parameters:
Parameter | Type | Description |
---|---|---|
content | java.lang.String | A string that contains the resource to be included in the email attachment. |
contentType | ContentType | The type of the content. |
Returns: LinkedResource - A LinkedResource object that contains the embedded resource.
createLinkedResourceFromString(String content, Charset contentEncoding, String mediaType)
public static LinkedResource createLinkedResourceFromString(String content, Charset contentEncoding, String mediaType)
Creates the linked resource from string.
Parameters:
Parameter | Type | Description |
---|---|---|
content | java.lang.String | A string that contains the resource to be included in the email attachment. |
contentEncoding | java.nio.charset.Charset | The content encoding. |
mediaType | java.lang.String | The MIME media type of the content. |
Returns: LinkedResource - A LinkedResource object that contains the embedded resource.
dispose()
public final void dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getContentDisposition()
public final ContentDisposition getContentDisposition()
Gets Content-Disposition header
Returns: ContentDisposition
getContentId()
public final String getContentId()
Gets or sets the content id.
Value: The content id.
Returns: java.lang.String
getContentLink()
public final URI getContentLink()
Gets or sets a URI that the resource must match.
Returns: java.net.URI
getContentStream()
public final InputStream getContentStream()
Gets or sets the content stream.
Value: The content stream.
Returns: java.io.InputStream
getContentType()
public final ContentType getContentType()
Gets or sets the type of the content.
Value: The type of the content.
Returns: ContentType
getHeaders()
public HeaderCollection getHeaders()
Gets headers collection of attachment.
Returns: HeaderCollection
getTransferEncoding()
public final int getTransferEncoding()
Gets or sets the transfer encoding.
Value: The transfer encoding.
Returns: int
hashCode()
public native int hashCode()
Returns: int
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
save(OutputStream stream)
public void save(OutputStream stream)
Saves the specified stream.
Parameters:
Parameter | Type | Description |
---|---|---|
stream | java.io.OutputStream | The stream. |
save(String fileName)
public void save(String fileName)
Saves the specified file name.
Parameters:
Parameter | Type | Description |
---|---|---|
fileName | java.lang.String | Name of the file. |
setContentId(String value)
public final void setContentId(String value)
Gets or sets the content id.
Value: The content id.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
setContentLink(URI value)
public final void setContentLink(URI value)
Gets or sets a URI that the resource must match.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.net.URI |
setContentStream(InputStream value)
public final void setContentStream(InputStream value)
Gets or sets the content stream.
Value: The content stream.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.io.InputStream |
setContentType(ContentType value)
public final void setContentType(ContentType value)
Gets or sets the type of the content.
Value: The type of the content.
Parameters:
Parameter | Type | Description |
---|---|---|
value | ContentType |
setTransferEncoding(int value)
public final void setTransferEncoding(int value)
Gets or sets the transfer encoding.
Value: The transfer encoding.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |