org.geoserver.ows.Request.isGet()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(2.8k)|赞(0)|评价(0)|浏览(226)

本文整理了Java中org.geoserver.ows.Request.isGet方法的一些代码示例,展示了Request.isGet的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.isGet方法的具体详情如下:
包路径:org.geoserver.ows.Request
类名称:Request
方法名:isGet

Request.isGet介绍

[英]True if the request is a GET one
[中]如果请求是GET one,则为True

代码示例

代码示例来源:origin: geoserver/geoserver

  1. if (!request.isGet()) { // && httpRequest.getInputStream().available() > 0) {

代码示例来源:origin: org.geoserver.csw/csw-core

  1. @Override
  2. public void encode(Object o) throws IllegalArgumentException {
  3. AttributesImpl attributes = new AttributesImpl();
  4. addAttribute(attributes, "xmlns:csw", CSW.NAMESPACE);
  5. addAttribute(attributes, "xmlns:ows", OWS.NAMESPACE);
  6. addAttribute(attributes, "xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
  7. addAttribute(attributes, "xmlns:xlink", XLINK.NAMESPACE);
  8. String locationAtt = "xsi:schemaLocation";
  9. StringBuilder locationDef = new StringBuilder();
  10. locationDef.append(CSW.NAMESPACE).append(" ");
  11. locationDef.append(cswSchemaLocation("record.xsd"));
  12. addAttribute(attributes, locationAtt, locationDef.toString());
  13. addAttribute(attributes, "timeStamp", Converters.convert(new Date(), String.class));
  14. start("csw:Acknowledgement", attributes);
  15. start("csw:EchoedRequest");
  16. Request request = Dispatcher.REQUEST.get();
  17. if (request.isGet()) {
  18. encodeGetEcho(request);
  19. } else {
  20. encodePostEcho();
  21. }
  22. end("csw:EchoedRequest");
  23. end("csw:Acknowledgement");
  24. }

代码示例来源:origin: org.geoserver.csw/gs-csw-core

  1. @Override
  2. public void encode(Object o) throws IllegalArgumentException {
  3. AttributesImpl attributes = new AttributesImpl();
  4. addAttribute(attributes, "xmlns:csw", CSW.NAMESPACE);
  5. addAttribute(attributes, "xmlns:ows", OWS.NAMESPACE);
  6. addAttribute(attributes, "xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
  7. addAttribute(attributes, "xmlns:xlink", XLINK.NAMESPACE);
  8. String locationAtt = "xsi:schemaLocation";
  9. StringBuilder locationDef = new StringBuilder();
  10. locationDef.append(CSW.NAMESPACE).append(" ");
  11. locationDef.append(cswSchemaLocation("record.xsd"));
  12. addAttribute(attributes, locationAtt, locationDef.toString());
  13. addAttribute(attributes, "timeStamp", Converters.convert(new Date(), String.class));
  14. start("csw:Acknowledgement", attributes);
  15. start("csw:EchoedRequest");
  16. Request request = Dispatcher.REQUEST.get();
  17. if (request.isGet()) {
  18. encodeGetEcho(request);
  19. } else {
  20. encodePostEcho();
  21. }
  22. end("csw:EchoedRequest");
  23. end("csw:Acknowledgement");
  24. }

代码示例来源:origin: org.geoserver/gs-wfs

  1. if (request.isGet()) {
  2. final HttpServletRequest httpRequest = request.getHttpRequest();
  3. String baseUrl = ResponseUtils.baseURL(httpRequest);

代码示例来源:origin: org.geoserver/gs-wfs

  1. if (req.isGet()) {
  2. kvp = new KvpMap(req.getRawKvp());
  3. } else {

相关文章