All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.minlia.rocket.stateful.body.ApiResponseBody Maven / Gradle / Ivy

There is a newer version: 2.0.4.1.RELEASE
Show newest version
package com.minlia.rocket.stateful.body;

/**
 * @author will
 */
public class ApiResponseBody extends StatefulBody {

  public ApiResponseBody() {
    super();
  }

  public ApiResponseBody(Integer code, Integer status, String message, T payload) {
    super(code, status, message, payload);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy