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

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

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

Request.getOutputFormat介绍

[英]The output format
[中]输出格式

代码示例

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

  1. if ((req.getOutputFormat() != null)
  2. && (!outputFormats.isEmpty())
  3. && !outputFormats.contains(req.getOutputFormat())) {
  4. if (req.getOutputFormat().equalsIgnoreCase(outputFormat)) {
  5. continue O;
  6. if (req.getOutputFormat() != null) {
  7. throw new ServiceException(
  8. "Failed to find response for output format " + req.getOutputFormat(),
  9. ServiceException.INVALID_PARAMETER_VALUE,
  10. "outputFormat");
  11. String msg = "No response: ( object = " + result.getClass();
  12. if (req.getOutputFormat() != null) {
  13. msg += (", outputFormat = " + req.getOutputFormat());

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

  1. if (req.getOutputFormat() == null) {
  2. req.setOutputFormat(
  3. lookupRequestBeanProperty(requestBean, "outputFormat", true));

代码示例来源:origin: org.geoserver/xslt

  1. @Override
  2. public boolean canHandle(Operation operation) {
  3. // if we don't have formats configured, we cannot respond
  4. if(formats.isEmpty()) {
  5. System.out.println("Empty formats");
  6. return false;
  7. }
  8. if(!super.canHandle(operation)) {
  9. return false;
  10. }
  11. // check the format matches, the Dispatcher just does a case insensitive match,
  12. // but WFS is supposed to be case sensitive and so is the XSLT code
  13. Request request = Dispatcher.REQUEST.get();
  14. if(request != null && (request.getOutputFormat() == null || !formats.containsKey(request.getOutputFormat()))) {
  15. System.out.println("Formats are: " + formats);
  16. return false;
  17. } else {
  18. return true;
  19. }
  20. }

代码示例来源:origin: org.geoserver.extension/control-flow

  1. @Override
  2. boolean matchesRequest(Request request) {
  3. if (!service.equalsIgnoreCase(request.getService()))
  4. return false;
  5. if (method == null)
  6. return true;
  7. else if (!method.equalsIgnoreCase(request.getRequest()))
  8. return false;
  9. if (outputFormat == null)
  10. return true;
  11. else if (!outputFormat.equalsIgnoreCase(request.getOutputFormat()))
  12. return false;
  13. return true;
  14. }

相关文章