Class JobParameter


  • public class JobParameter
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      JobParameter​(java.lang.Class<?> clazz, java.lang.Object object)  
      JobParameter​(java.lang.Object object)  
      JobParameter​(java.lang.String className, java.lang.Object object)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getActualClassName()
      Represents the actual class name of the job parameter (e.g.
      java.lang.String getClassName()
      Represents the class name expected by the job method (e.g.
      java.lang.Object getObject()
      The actual job parameter
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

    • Constructor Detail

      • JobParameter

        public JobParameter​(java.lang.Class<?> clazz,
                            java.lang.Object object)
      • JobParameter

        public JobParameter​(java.lang.Object object)
      • JobParameter

        public JobParameter​(java.lang.String className,
                            java.lang.Object object)
    • Method Detail

      • getClassName

        public java.lang.String getClassName()
        Represents the class name expected by the job method (e.g. an object or an interface)
        Returns:
        the class name expected by the job method (e.g. an object or an interface)
      • getActualClassName

        public java.lang.String getActualClassName()
        Represents the actual class name of the job parameter (e.g. an object), this will never be an interface
        Returns:
        the actual class name of the job parameter (e.g. an object), this will never be an interface
      • getObject

        public java.lang.Object getObject()
        The actual job parameter
        Returns:
        the actual job parameter