Class ResourceFileUploadResultModel


  • public class ResourceFileUploadResultModel
    extends java.lang.Object
    Encapsulates the result of uploading a file to the resource system
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Boolean getAaa_success()
      Getter for aaa_success True if the upload request succeeded.
      java.lang.String getMessage()
      Getter for message If the request failed, this contains a description of the error.
      java.lang.Long getResourceFileId()
      Getter for resourceFileId If the request succeeded, this is the ID number of the file.
      void setAaa_success​(java.lang.Boolean value)
      Setter for aaa_success True if the upload request succeeded.
      void setMessage​(java.lang.String value)
      Setter for message If the request failed, this contains a description of the error.
      void setResourceFileId​(java.lang.Long value)
      Setter for resourceFileId If the request succeeded, this is the ID number of the file.
      java.lang.String toString()
      Returns a JSON string representation of ResourceFileUploadResultModel
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ResourceFileUploadResultModel

        public ResourceFileUploadResultModel()
    • Method Detail

      • getMessage

        public java.lang.String getMessage()
        Getter for message If the request failed, this contains a description of the error.
      • setMessage

        public void setMessage​(java.lang.String value)
        Setter for message If the request failed, this contains a description of the error.
      • getResourceFileId

        public java.lang.Long getResourceFileId()
        Getter for resourceFileId If the request succeeded, this is the ID number of the file.
      • setResourceFileId

        public void setResourceFileId​(java.lang.Long value)
        Setter for resourceFileId If the request succeeded, this is the ID number of the file.
      • getAaa_success

        public java.lang.Boolean getAaa_success()
        Getter for aaa_success True if the upload request succeeded.
      • setAaa_success

        public void setAaa_success​(java.lang.Boolean value)
        Setter for aaa_success True if the upload request succeeded.
      • toString

        public java.lang.String toString()
        Returns a JSON string representation of ResourceFileUploadResultModel
        Overrides:
        toString in class java.lang.Object