Class Prompt

  • All Implemented Interfaces:
    Serializable

    public class Prompt
    extends Object
    implements Serializable

    Java class for prompt complex type.

    The following schema fragment specifies the expected content contained within this class.

     <complexType name="prompt">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <sequence>
             <element name="languageReference" type="{http://www.iknowbase.com/ws/iknowbase-2}objectReference"/>
             <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
             <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
           </sequence>
         </restriction>
       </complexContent>
     </complexType>
     
    See Also:
    Serialized Form
    • Constructor Detail

      • Prompt

        public Prompt()
        Default no-arg constructor
      • Prompt

        public Prompt​(ObjectReference languageReference,
                      String value,
                      String description)
        Fully-initialising value constructor
      • Prompt

        public Prompt​(String externalKey,
                      String value)
    • Method Detail

      • getLanguageReference

        public ObjectReference getLanguageReference()
        Gets the value of the languageReference property.
        Returns:
        possible object is ObjectReference
      • setLanguageReference

        public void setLanguageReference​(ObjectReference value)
        Sets the value of the languageReference property.
        Parameters:
        value - allowed object is ObjectReference
      • getValue

        public String getValue()
        Gets the value of the value property.
        Returns:
        possible object is String
      • setValue

        public void setValue​(String value)
        Sets the value of the value property.
        Parameters:
        value - allowed object is String
      • getDescription

        public String getDescription()
        Gets the value of the description property.
        Returns:
        possible object is String
      • setDescription

        public void setDescription​(String value)
        Sets the value of the description property.
        Parameters:
        value - allowed object is String
      • withDescription

        public Prompt withDescription​(String value)