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

io.katharsis.response.BaseResponseContext Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.katharsis.response;

import com.fasterxml.jackson.annotation.JsonIgnore;
import io.katharsis.queryParams.QueryParams;
import io.katharsis.request.path.JsonPath;

/**
 * Top-level JSON container's interface, used to generalize single and collection responses.
 */
public interface BaseResponseContext {

    @JsonIgnore
    int getHttpStatus();

    JsonApiResponse getResponse();

    JsonPath getJsonPath();

    QueryParams getQueryParams();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy