Class 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Greenhouse

        public Greenhouse​(java.lang.String uuid,
                          java.lang.String name,
                          java.lang.String description)
        Constructor.
        Parameters:
        uuid - The unique identifier of the greenhouse.
        name - The name of the greenhouse.
        description - The location 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.