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 longcreationDateCreation dateprotected longfileOjectIdFile object idprotected StringnameThe name of the fileprotected StringtagsTags 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 longgetCreationDate()longgetFileOjectId()StringgetName()StringgetTags()voidsetCreationDate(long creationDate)voidsetFileOjectId(long fileOjectId)voidsetName(String name)voidsetTags(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)
-
-