Package org.javlo.remote
Interface IRemoteResource
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
RemoteBean
,Template.TemplateBean
public interface IRemoteResource extends Serializable
-
-
Field Summary
Fields Modifier and Type Field Description static String
TYPE_COMPONENT
static String
TYPE_MODULE
static String
TYPE_TEMPLATE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAuthors()
String
getCategory()
Date
getDate()
String
getDateAsString()
String
getDescription()
String
getDownloadURL()
String
getId()
String
getImageURL()
String
getLicence()
String
getName()
String
getType()
String
getURL()
String
getVersion()
void
setAuthors(String authors)
void
setCategory(String category)
void
setDate(Date date)
void
setDescription(String description)
void
setDownloadURL(String url)
void
setId(String id)
void
setImageURL(String url)
void
setLicence(String licence)
void
setName(String name)
void
setURL(String url)
void
setVersion(String version)
-
-
-
Field Detail
-
TYPE_TEMPLATE
static final String TYPE_TEMPLATE
- See Also:
- Constant Field Values
-
TYPE_COMPONENT
static final String TYPE_COMPONENT
- See Also:
- Constant Field Values
-
TYPE_MODULE
static final String TYPE_MODULE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDownloadURL
String getDownloadURL()
-
getImageURL
String getImageURL()
-
getURL
String getURL()
-
getName
String getName()
-
getAuthors
String getAuthors()
-
getDescription
String getDescription()
-
getLicence
String getLicence()
-
getType
String getType()
-
getCategory
String getCategory()
-
getDateAsString
String getDateAsString()
-
getVersion
String getVersion()
-
getDate
Date getDate()
-
getId
String getId()
-
setDownloadURL
void setDownloadURL(String url)
-
setImageURL
void setImageURL(String url)
-
setURL
void setURL(String url)
-
setName
void setName(String name)
-
setAuthors
void setAuthors(String authors)
-
setDescription
void setDescription(String description)
-
setLicence
void setLicence(String licence)
-
setDate
void setDate(Date date)
-
setId
void setId(String id)
-
setCategory
void setCategory(String category)
-
setVersion
void setVersion(String version)
-
-