Package nl.b3p.csw.server
Interface CswServable<T>
-
- All Known Implementing Classes:
GeoNetworkCswServer
public interface CswServable<T>- Author:
- Erik van de Pol
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TdoRequest(String cswRequestXml, boolean transaction)Posts cswRequestXml to the server.
-
-
-
Method Detail
-
doRequest
T doRequest(String cswRequestXml, boolean transaction) throws IOException, org.jdom2.JDOMException, javax.xml.bind.JAXBException, OwsException
Posts cswRequestXml to the server. Classes implementing CswServable should supply their own login logic.- Parameters:
cswRequestXml-- Returns:
- The response from the server as a String. The String should contain xml.
- Throws:
IOExceptionorg.jdom2.JDOMExceptionjavax.xml.bind.JAXBExceptionOwsException
-
-