Class MessagePropertyDTO


  • public class MessagePropertyDTO
    extends Object
    a property as used in the MessageBF_DTO passing message properties in this format ensures maximum interoperability between different versions of client and server the server can supply default values for properties which the client does not send, the server may ignore unknown properties set by the client, unless the client forces such properties to be understood
    • Field Detail

      • propertyName

        public String propertyName
        the name of the property. Names are generally agreed upon by sender and receiver of the message
      • propertyValue

        public String propertyValue
        the value of the property
      • mustUnderstand

        public boolean mustUnderstand
        if true, the receiver must understand/support the property or fail to process the message. Otherwise it may ignore the property.
    • Constructor Detail

      • MessagePropertyDTO

        public MessagePropertyDTO()
      • MessagePropertyDTO

        public MessagePropertyDTO​(String name,
                                  String value,
                                  boolean mustUnderstand)