Package com.lucidworks.apollo.resources
Interface SolrAdminProxyResource
@Path("/solrAdmin")
public interface SolrAdminProxyResource
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionjavax.ws.rs.core.ResponseproxyDeleteRequestToSolr(String searchClusterId, String path, javax.ws.rs.core.HttpHeaders headers, javax.ws.rs.core.UriInfo uriInfo) javax.ws.rs.core.ResponseproxyGetRequestToSolr(String searchClusterId, String path, javax.ws.rs.core.HttpHeaders headers, javax.ws.rs.core.UriInfo uriInfo) javax.ws.rs.core.ResponseproxyHeadRequestToSolr(String searchClusterId, String path, javax.ws.rs.core.HttpHeaders headers, javax.ws.rs.core.UriInfo uriInfo) javax.ws.rs.core.ResponseproxyOptionsRequestToSolr(String searchClusterId, String path, javax.ws.rs.core.HttpHeaders headers, javax.ws.rs.core.UriInfo uriInfo) javax.ws.rs.core.ResponseproxyPostRequestToSolr(String searchClusterId, String path, javax.ws.rs.core.HttpHeaders headers, javax.ws.rs.core.UriInfo uriInfo, InputStream entity) javax.ws.rs.core.ResponseproxyPutRequestToSolr(String searchClusterId, String path, javax.ws.rs.core.HttpHeaders headers, javax.ws.rs.core.UriInfo uriInfo, InputStream entity)
-
Field Details
-
SERVICE_NAME
- See Also:
-
PATH
- See Also:
-
-
Method Details
-
proxyHeadRequestToSolr
@Path("{searchClusterId}/{path:.*}") @HEAD javax.ws.rs.core.Response proxyHeadRequestToSolr(String searchClusterId, String path, @Context javax.ws.rs.core.HttpHeaders headers, @Context javax.ws.rs.core.UriInfo uriInfo) throws Exception - Throws:
Exception
-
proxyOptionsRequestToSolr
@Path("{searchClusterId}/{path:.*}") @OPTIONS javax.ws.rs.core.Response proxyOptionsRequestToSolr(@PathParam("searchClusterId") String searchClusterId, @PathParam("path") String path, @Context javax.ws.rs.core.HttpHeaders headers, @Context javax.ws.rs.core.UriInfo uriInfo) throws Exception - Throws:
Exception
-
proxyGetRequestToSolr
@Path("{searchClusterId}/{path:.*}") @GET javax.ws.rs.core.Response proxyGetRequestToSolr(@PathParam("searchClusterId") String searchClusterId, @PathParam("path") String path, @Context javax.ws.rs.core.HttpHeaders headers, @Context javax.ws.rs.core.UriInfo uriInfo) throws Exception - Throws:
Exception
-
proxyPutRequestToSolr
@Path("{searchClusterId}/{path:.*}") @PUT javax.ws.rs.core.Response proxyPutRequestToSolr(@PathParam("searchClusterId") String searchClusterId, @PathParam("path") String path, @Context javax.ws.rs.core.HttpHeaders headers, @Context javax.ws.rs.core.UriInfo uriInfo, InputStream entity) throws Exception - Throws:
Exception
-
proxyPostRequestToSolr
@Path("{searchClusterId}/{path:.*}") @POST javax.ws.rs.core.Response proxyPostRequestToSolr(String searchClusterId, @PathParam("path") String path, @Context javax.ws.rs.core.HttpHeaders headers, @Context javax.ws.rs.core.UriInfo uriInfo, InputStream entity) throws Exception - Throws:
Exception
-
proxyDeleteRequestToSolr
@Path("{searchClusterId}/{path:.*}") @DELETE javax.ws.rs.core.Response proxyDeleteRequestToSolr(@PathParam("searchClusterId") String searchClusterId, @PathParam("path") String path, @Context javax.ws.rs.core.HttpHeaders headers, @Context javax.ws.rs.core.UriInfo uriInfo) throws Exception - Throws:
Exception
-