Class MetadataProfile
- java.lang.Object
-
- org.gcube.common.metadataprofilediscovery.bean.MetadataProfile
-
- All Implemented Interfaces:
Serializable
public class MetadataProfile extends Object implements Serializable
The Class MetadataProfile.- Author:
- Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it May 19, 2017
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MetadataProfile()Instantiates a new metadata type.MetadataProfile(String id, String name, String description, String metadataType)Instantiates a new metadata type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Gets the description.StringgetId()Gets the id.StringgetMetadataType()Gets the metadata type.StringgetName()Gets the name.voidsetDescription(String description)Sets the description.voidsetId(String id)Sets the id.voidsetMetadataType(String metadataType)Sets the metadata type.voidsetName(String name)Sets the name.StringtoString()
-
-
-
Method Detail
-
getId
public String getId()
Gets the id.- Returns:
- the id
-
getName
public String getName()
Gets the name.- Returns:
- the name
-
getDescription
public String getDescription()
Gets the description.- Returns:
- the description
-
setId
public void setId(String id)
Sets the id.- Parameters:
id- the id to set
-
setName
public void setName(String name)
Sets the name.- Parameters:
name- the name to set
-
setDescription
public void setDescription(String description)
Sets the description.- Parameters:
description- the description to set
-
getMetadataType
public String getMetadataType()
Gets the metadata type.- Returns:
- the metadataType
-
setMetadataType
public void setMetadataType(String metadataType)
Sets the metadata type.- Parameters:
metadataType- the metadataType to set
-
-