Package org.apache.cxf.transport.http
Interface DestinationRegistry
-
- All Known Implementing Classes:
DestinationRegistryImpl
public interface DestinationRegistry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddDestination(AbstractHTTPDestination destination)AbstractHTTPDestinationcheckRestfulRequest(String address)AbstractHTTPDestinationgetDestinationForPath(String path)AbstractHTTPDestinationgetDestinationForPath(String path, boolean tryDecoding)Collection<AbstractHTTPDestination>getDestinations()Set<String>getDestinationsPaths()AbstractDestination[]getSortedDestinations()voidremoveDestination(String path)
-
-
-
Method Detail
-
addDestination
void addDestination(AbstractHTTPDestination destination)
-
removeDestination
void removeDestination(String path)
-
getDestinationForPath
AbstractHTTPDestination getDestinationForPath(String path)
-
getDestinationForPath
AbstractHTTPDestination getDestinationForPath(String path, boolean tryDecoding)
-
checkRestfulRequest
AbstractHTTPDestination checkRestfulRequest(String address)
-
getDestinations
Collection<AbstractHTTPDestination> getDestinations()
-
getSortedDestinations
AbstractDestination[] getSortedDestinations()
-
-