Package com.azaptree.wadl

Examples of com.azaptree.wadl.Include


    final List<CommandKey> keys = new ArrayList<>(targetUriCommandKeyMap.values());
    Collections.sort(keys);
    for (final CommandKey commandKey : keys) {
      final WebRequestCommand<?, ?> command = (WebRequestCommand<?, ?>) commandService.getCommand(commandKey);
      if (command.hasXmlSchema()) {
        final Include include = new Include();
        include.setHref(String.format("%s/command-service/%s/%s.xsd", applicationHttpUrlBase, commandKey.getCatalogName(), commandKey.getCommandName()));
        grammars.getInclude().add(include);
      }
    }
    return grammars;
  }
View Full Code Here

TOP

Related Classes of com.azaptree.wadl.Include

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.