Package com.avoka.fc.core.service
Class MetaData
- java.lang.Object
-
- com.avoka.fc.core.service.MetaData
-
public class MetaData extends Object
Provides a meta data element bean.
-
-
Constructor Summary
Constructors Constructor Description MetaData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getContent()
Return the content of the meta data element.String
getName()
Return the name of the meta data element.String
getScheme()
Return the scheme of the meta data element.void
setContent(String content)
Set the content of the meta data element.void
setName(String name)
Set the name of the meta data element.void
setScheme(String scheme)
Set the scheme of the meta data element.
-
-
-
Method Detail
-
getName
public String getName()
Return the name of the meta data element.- Returns:
- the name of the meta data element
-
setName
public void setName(String name)
Set the name of the meta data element.- Parameters:
name
- the name of the meta data element
-
getScheme
public String getScheme()
Return the scheme of the meta data element.- Returns:
- the scheme of the meta data element
-
setScheme
public void setScheme(String scheme)
Set the scheme of the meta data element.- Parameters:
scheme
- the scheme of the meta data element
-
getContent
public String getContent()
Return the content of the meta data element.- Returns:
- the content of the meta data element
-
setContent
public void setContent(String content)
Set the content of the meta data element.- Parameters:
content
- the content of the meta data element
-
-