Class NewVocabularyTerm

java.lang.Object
ch.systemsx.cisd.openbis.generic.shared.api.v1.dto.NewVocabularyTerm
All Implemented Interfaces:
Serializable

@JsonObject("NewVocabularyTerm") public class NewVocabularyTerm extends Object implements Serializable
A value object representing a new vocabulary term to be created by the openBIS backend.
See Also:
  • Constructor Details

    • NewVocabularyTerm

      public NewVocabularyTerm()
  • Method Details

    • getCode

      public String getCode()
      Return the term's code.
    • setCode

      public void setCode(String code)
      Set the term's code.
    • getLabel

      public String getLabel()
      Return the term's label.
    • setLabel

      public void setLabel(String label)
      Set the term's label.
    • getDescription

      public String getDescription()
      Return the term's description.
    • setDescription

      public void setDescription(String description)
      Set the term's description.
    • getPreviousTermOrdinal

      public Long getPreviousTermOrdinal()
      Return the position of predecessor term in the vocabulary.
    • setPreviousTermOrdinal

      public void setPreviousTermOrdinal(Long previousTermOrdinal)
      Set the position of predecessor term in the vocabulary.
    • toString

      public String toString()
      Overrides:
      toString in class Object