Class Service
- java.lang.Object
-
- com.woorea.openstack.keystone.model.Service
-
- All Implemented Interfaces:
Serializable
public class Service extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Service()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()StringgetId()StringgetName()StringgetType()voidsetDescription(String description)voidsetName(String name)voidsetType(String type)StringtoString()
-
-
-
Method Detail
-
getId
public String getId()
- Returns:
- the id
-
getType
public String getType()
- Returns:
- the type
-
setType
public void setType(String type)
- Parameters:
type- the type to set
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getDescription
public String getDescription()
- Returns:
- the description
-
setDescription
public void setDescription(String description)
- Parameters:
description- the description to set
-
-