Class RemoteFileObjectLight
- java.lang.Object
-
- org.neotropic.kuwaiba.northbound.ws.model.business.RemoteFileObjectLight
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
RemoteFileObject
public class RemoteFileObjectLight extends Object implements Serializable
Wrapper of FileObjectLight. Represents a file attached to an inventory object- Author:
- Charles Edward Bedon Cortazar <charles.bedon@kuwaiba.org>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected long
creationDate
Creation dateprotected long
fileOjectId
File object idprotected String
name
The name of the fileprotected String
tags
Tags associated to the binary file that can be used to index it or find it in searches
-
Constructor Summary
Constructors Constructor Description RemoteFileObjectLight()
RemoteFileObjectLight(long fileOjectId, String name, long creationDate, String tags)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getCreationDate()
long
getFileOjectId()
String
getName()
String
getTags()
void
setCreationDate(long creationDate)
void
setFileOjectId(long fileOjectId)
void
setName(String name)
void
setTags(String tags)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getFileOjectId
public long getFileOjectId()
-
setFileOjectId
public void setFileOjectId(long fileOjectId)
-
getTags
public String getTags()
-
setTags
public void setTags(String tags)
-
getCreationDate
public long getCreationDate()
-
setCreationDate
public void setCreationDate(long creationDate)
-
-