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

com.nntk.restplus.strategy.PostRequestHandler Maven / Gradle / Ivy

package com.nntk.restplus.strategy;

import com.nntk.restplus.abs.AbsHttpFactory;
import com.nntk.restplus.entity.RestPlusResponse;
import org.springframework.stereotype.Component;

@Component
public class PostRequestHandler extends HttpRequestBaseHandler {


    @Override
    public RestPlusResponse executeHttp(HttpExecuteContext context) {
        return context.getHttpFactory().post(context);
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy