public static Services fromXml()

in src/main/java/com/vispana/api/model/apppackage/Services.java [15:25]


  public static Services fromXml(String xml) {
    XmlMapper xmlMapper = new XmlMapper();
    // To ignore parts off service xml that we don't need
    xmlMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);

    try {
      return xmlMapper.readValue(xml, Services.class);
    } catch (IOException e) {
      throw new RuntimeException("Failed to parse Services xml", e);
    }
  }