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

ru.cwcode.tkach.httpWrapper.SimpleResponse Maven / Gradle / Ivy

The newest version!
package ru.cwcode.tkach.httpWrapper;

import lombok.Getter;

import java.util.Map;

@Getter
public class SimpleResponse> extends BaseResponse {
  SimpleResponseHandlerChain handler = new SimpleResponseHandlerChain<>(r);
  
  public SimpleResponse(boolean success, int code, BaseRequest request, Map response) {
    super(success, code, request, response);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy