Class DbOperation

    • Field Detail

      • operationType

        protected DbOperationType operationType
        The type of the operation.
      • rowsAffected

        protected int rowsAffected
      • failure

        protected java.lang.Exception failure
      • entityType

        protected java.lang.Class<? extends DbEntity> entityType
        The type of the DbEntity this operation is executed on.
    • Constructor Detail

      • DbOperation

        public DbOperation()
    • Method Detail

      • getEntityType

        public java.lang.Class<? extends DbEntity> getEntityType()
      • setEntityType

        public void setEntityType​(java.lang.Class<? extends DbEntity> entityType)
      • setOperationType

        public void setOperationType​(DbOperationType operationType)
      • getRowsAffected

        public int getRowsAffected()
      • setRowsAffected

        public void setRowsAffected​(int rowsAffected)
      • isFailed

        public boolean isFailed()
      • getFailure

        public java.lang.Exception getFailure()
      • setFailure

        public void setFailure​(java.lang.Exception failure)