Package de.aservo.confapi.crowd.rest.api
Interface TrustedProxiesResource
- All Known Implementing Classes:
TrustedProxiesResourceImpl
public interface TrustedProxiesResource
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionjavax.ws.rs.core.ResponseaddTrustedProxy(String trustedProxy) javax.ws.rs.core.Responsejavax.ws.rs.core.ResponseremoveTrustedProxy(String trustedProxy) javax.ws.rs.core.ResponsesetTrustedProxies(TrustedProxiesBean trustedProxiesBean)
-
Field Details
-
TRUSTED_PROXIES
- See Also:
-
-
Method Details
-
getTrustedProxies
@GET @Produces("application/json") javax.ws.rs.core.Response getTrustedProxies() -
setTrustedProxies
@PUT @Consumes("application/json") @Produces("application/json") javax.ws.rs.core.Response setTrustedProxies(TrustedProxiesBean trustedProxiesBean) -
addTrustedProxy
@POST @Consumes("text/plain") @Produces("application/json") @XsrfProtectionExcluded javax.ws.rs.core.Response addTrustedProxy(String trustedProxy) -
removeTrustedProxy
@DELETE @Consumes("text/plain") @Produces("application/json") javax.ws.rs.core.Response removeTrustedProxy(String trustedProxy)
-