Class Greenhouse
- java.lang.Object
-
- com.inhousegreenhouse.ch.backend.model.util.Greenhouse
-
public class Greenhouse extends java.lang.Object
This class represents a registered greenhouse.
-
-
Constructor Summary
Constructors Constructor Description Greenhouse(java.lang.String uuid, java.lang.String name, java.lang.String description)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
Returns the location of the greenhouse.java.lang.String
getId()
Returns the unique identifier of the greenhouse.java.lang.String
getName()
Returns the name of the greenhouse.
-
-
-
Method Detail
-
getId
public java.lang.String getId()
Returns the unique identifier of the greenhouse.- Returns:
- The unique identifier of the greenhouse.
-
getName
public java.lang.String getName()
Returns the name of the greenhouse.- Returns:
- The name of the greenhouse.
-
getDescription
public java.lang.String getDescription()
Returns the location of the greenhouse.- Returns:
- The location of the greenhouse.
-
-