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

io.getlime.security.powerauth.lib.cmd.steps.context.ResponseContext Maven / Gradle / Ivy

The newest version!
package io.getlime.security.powerauth.lib.cmd.steps.context;

import lombok.Builder;
import lombok.Data;
import org.springframework.http.ResponseEntity;

/**
 * Response context
 *
 * @author Lukas Lukovsky, [email protected]
 */
@Data
@Builder
public class ResponseContext {

    /**
     * Response body object
     */
    private R responseBodyObject;

    /**
     * HTTP response entity
     */
    private ResponseEntity responseEntity;

    /**
     * HTTP response payload (decrypted from the response entity)
     */
    private Object responsePayloadDecrypted;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy