Package lumis.search
Class SearchContentAttachment
- java.lang.Object
-
- lumis.search.SearchContentAttachment
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
@Deprecated @StableMinor(version="16.1", sinceVersion="4.2.2") public class SearchContentAttachment extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable
Deprecated.Since 8.1.0, lumis.search was replaced by lumis.portal.bigdata.Attachment to aSearchContent
object. Contains the information about a single attachment.- Since:
- 4.2.2
- Version:
- $Revision: 26157 $ $Date: 2024-01-13 11:35:03 -0300 (Sat, 13 Jan 2024) $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SearchContentAttachment()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description SearchContentAttachment
clone()
Deprecated.Clones thisSearchContentAttachment
instance.byte[]
getContent()
Deprecated.Returns the content data for this attachment.java.lang.String
getContentType()
Deprecated.Returns the MIME content type for this attachment.java.lang.String
getName()
Deprecated.Returns the name for this attachment.java.lang.String
getUrl()
Deprecated.Returns the URL for this attachment.void
setContent(byte[] content)
Deprecated.Sets the content data for this attachment.void
setContentType(java.lang.String contentType)
Deprecated.Sets the MIME content type for this attachment.void
setName(java.lang.String name)
Deprecated.Sets the name for this attachment.void
setUrl(java.lang.String url)
Deprecated.Sets the URL for this attachment.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Deprecated.Returns the name for this attachment.- Returns:
- the name.
- Since:
- 4.2.2
-
setName
public void setName(java.lang.String name)
Deprecated.Sets the name for this attachment.- Parameters:
name
- the name.- Since:
- 4.2.2
-
getContentType
public java.lang.String getContentType()
Deprecated.Returns the MIME content type for this attachment.- Returns:
- the MIME content type.
- Since:
- 4.2.2
-
setContentType
public void setContentType(java.lang.String contentType)
Deprecated.Sets the MIME content type for this attachment.- Parameters:
contentType
- the MIME content type.- Since:
- 4.2.2
-
getContent
public byte[] getContent()
Deprecated.Returns the content data for this attachment.- Returns:
- the content data for this attachment.
- Since:
- 4.2.2
-
setContent
public void setContent(byte[] content)
Deprecated.Sets the content data for this attachment.- Parameters:
content
- the content data.- Since:
- 4.2.2
-
getUrl
public java.lang.String getUrl()
Deprecated.Returns the URL for this attachment.- Returns:
- url the URL or
null
if no URL was specified for this attachment. - Since:
- 4.2.2
-
setUrl
public void setUrl(java.lang.String url)
Deprecated.Sets the URL for this attachment.- Parameters:
url
- the URL.- Since:
- 4.2.2
-
clone
public SearchContentAttachment clone()
Deprecated.Clones thisSearchContentAttachment
instance.- Overrides:
clone
in classjava.lang.Object
- Returns:
- the cloned instance.
-
-