Class ApplicationProfile
- java.lang.Object
-
- org.gcube.datatransfer.resolver.applicationprofile.ApplicationProfile
-
- All Implemented Interfaces:
Serializable
public class ApplicationProfile extends Object implements Serializable
The Class ApplicationProfile.- Author:
- Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it Jan 14, 2016
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ApplicationProfile()Instantiates a new application profile.ApplicationProfile(String key, String name, String description, String imageUrl, String scope, String url)Instantiates a new application profile.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Gets the description.StringgetImageUrl()Gets the image url.StringgetKey()Gets the key.StringgetName()Gets the name.StringgetScope()Gets the scope.StringgetUrl()Gets the url.voidsetDescription(String description)Sets the description.voidsetImageUrl(String imageUrl)Sets the image url.voidsetKey(String key)Sets the key.voidsetName(String name)Sets the name.voidsetScope(String scope)Sets the scope.voidsetUrl(String url)Sets the url.StringtoString()
-
-
-
Constructor Detail
-
ApplicationProfile
public ApplicationProfile()
Instantiates a new application profile.
-
ApplicationProfile
public ApplicationProfile(String key, String name, String description, String imageUrl, String scope, String url)
Instantiates a new application profile.- Parameters:
key- the keyname- the namedescription- the descriptionimageUrl- the image urlscope- the scopeurl- the url
-
-
Method Detail
-
getKey
public String getKey()
Gets the key.- Returns:
- the key
-
setKey
public void setKey(String key)
Sets the key.- Parameters:
key- the new key
-
getName
public String getName()
Gets the name.- Returns:
- the name
-
setName
public void setName(String name)
Sets the name.- Parameters:
name- the new name
-
getDescription
public String getDescription()
Gets the description.- Returns:
- the description
-
setDescription
public void setDescription(String description)
Sets the description.- Parameters:
description- the new description
-
getImageUrl
public String getImageUrl()
Gets the image url.- Returns:
- the image url
-
setImageUrl
public void setImageUrl(String imageUrl)
Sets the image url.- Parameters:
imageUrl- the new image url
-
getScope
public String getScope()
Gets the scope.- Returns:
- the scope
-
setScope
public void setScope(String scope)
Sets the scope.- Parameters:
scope- the new scope
-
getUrl
public String getUrl()
Gets the url.- Returns:
- the url
-
setUrl
public void setUrl(String url)
Sets the url.- Parameters:
url- the new url
-
-