Klasse RestParameter

java.lang.Object
de.dlr.proseo.ingestor.rest.model.RestParameter
Alle implementierten Schnittstellen:
Serializable

public class RestParameter extends Object implements Serializable
Siehe auch:
  • Felddetails

    • serialVersionUID

      static final long serialVersionUID
      Siehe auch:
    • key

      protected String key
      The parameter name
    • parameterType

      protected String parameterType
      The type of the parameter for deserialization (one of { "STRING", "INTEGER", "BOOLEAN", "DOUBLE", "INSTANT" } )
    • parameterValue

      protected String parameterValue
      All parameter values are serialized to their string representations. For deserialization refer to the parameterType.
  • Konstruktordetails

    • RestParameter

      public RestParameter()
      Creates a new RestParameter.
    • RestParameter

      public RestParameter(String key, String parameterType, String parameterValue)
      Creates a new RestParameter.
  • Methodendetails

    • getKey

      @NotNull public @NotNull String getKey()
      Returns the key.
      Gibt zurück:
      key
    • setKey

      public void setKey(String key)
      Set the key.
      Parameter:
      key - the new key
    • getParameterType

      @NotNull public @NotNull String getParameterType()
      Returns the parameterType.
      Gibt zurück:
      parameterType
    • setParameterType

      public void setParameterType(String parameterType)
      Set the parameterType.
      Parameter:
      parameterType - the new parameterType
    • getParameterValue

      @NotNull public @NotNull String getParameterValue()
      Returns the parameterValue.
      Gibt zurück:
      parameterValue
    • setParameterValue

      public void setParameterValue(String parameterValue)
      Set the parameterValue.
      Parameter:
      parameterValue - the new parameterValue
    • hashCode

      public int hashCode()
      Setzt außer Kraft:
      hashCode in Klasse Object
    • equals

      public boolean equals(Object other)
      Setzt außer Kraft:
      equals in Klasse Object
    • toString

      public String toString()
      Setzt außer Kraft:
      toString in Klasse Object