Class ActionExpressionType

  • All Implemented Interfaces:
    com.helger.commons.lang.IExplicitlyCloneable, Serializable, Cloneable

    @CodingStyleguideUnaware
    public class ActionExpressionType
    extends Object
    implements Serializable, com.helger.commons.lang.IExplicitlyCloneable
    ReturnCriteria identifies the content that is to be returned, given query success. In essence, the expression here has the effect of filtering the part(s) of the found element(s) that are to be returned. ReturnCriteria plays no role in the query itself. That is handled as a match against the request BOD's noun exemplar. ReturnCriteria allows the sender of the BOD to indicate which information (down to the field level) is requested to be returned, given that the query has been successful in matching the exemplar to existing nouns. That is, in a GetListPurchaseOrder, if one or more PurchaseOrders with a TotalPrice = $1M were found, ReturnCriteria tells the BOD recipient which parts of the PurchaseOrder should be populated with content when the response (ShowPurchaseOrder) is formulated. The expressionLanguage indicates the expression language being used. In order for the ReturnCriteria expression to be evaluable by the BOD recipient, the recipient must be capable of processing and interpreting the specified expression language. XPath is the default, due to its ubiquity among XML processing technologies.

    Java class for ActionExpressionType complex type.

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

     <complexType name="ActionExpressionType">
       <simpleContent>
         <extension base="<http://www.openapplications.org/oagis/9>TokenType">
           <attribute name="actionCode" use="required" type="{http://www.openapplications.org/oagis/9}ActionCodeContentType" />
           <attribute name="expressionLanguage" type="{http://www.openapplications.org/oagis/9}TokenType" />
         </extension>
       </simpleContent>
     </complexType>
     

    This class was annotated by ph-jaxb22-plugin -Xph-annotate

    This class contains methods created by ph-jaxb22-plugin -Xph-equalshashcode

    This class contains methods created by ph-jaxb22-plugin -Xph-tostring

    This class contains methods created by ph-jaxb22-plugin -Xph-cloneable2

    This class contains methods created by ph-jaxb22-plugin -Xph-value-extender

    See Also:
    Serialized Form
    • Constructor Detail

      • ActionExpressionType

        public ActionExpressionType()
        Default constructor
        Note: automatically created by ph-jaxb22-plugin -Xph-value-extender
      • ActionExpressionType

        public ActionExpressionType​(@Nullable
                                    String valueParam)
        Constructor for value of type String
        Note: automatically created by ph-jaxb22-plugin -Xph-value-extender
        Parameters:
        valueParam - The value to be set. May be null.
    • Method Detail

      • getValue

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

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

        @Nullable
        public String getActionCode()
        Gets the value of the actionCode property.
        Returns:
        possible object is String
      • setActionCode

        public void setActionCode​(@Nullable
                                  String value)
        Sets the value of the actionCode property.
        Parameters:
        value - allowed object is String
      • getExpressionLanguage

        @Nullable
        public String getExpressionLanguage()
        Gets the value of the expressionLanguage property.
        Returns:
        possible object is String
      • setExpressionLanguage

        public void setExpressionLanguage​(@Nullable
                                          String value)
        Sets the value of the expressionLanguage property.
        Parameters:
        value - allowed object is String
      • equals

        public boolean equals​(Object o)
        Created by ph-jaxb22-plugin -Xph-equalshashcode
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Created by ph-jaxb22-plugin -Xph-equalshashcode
        Overrides:
        hashCode in class Object
      • toString

        public String toString()
        Created by ph-jaxb22-plugin -Xph-tostring
        Overrides:
        toString in class Object
      • cloneTo

        public void cloneTo​(@Nonnull
                            ActionExpressionType ret)
        This method clones all values from this to the passed object. All data in the parameter object is overwritten!Created by ph-jaxb22-plugin -Xph-cloneable2
        Parameters:
        ret - The target object to clone to. May not be null.
      • clone

        @Nonnull
        @ReturnsMutableCopy
        public ActionExpressionType clone()
        Created by ph-jaxb22-plugin -Xph-cloneable2
        Specified by:
        clone in interface com.helger.commons.lang.IExplicitlyCloneable
        Overrides:
        clone in class Object
        Returns:
        The cloned object. Never null.