Examples of SeverityEnumeration


Examples of uk.org.siri.siri.SeverityEnumeration

  }

  private void handleOtherFields(PtSituationElementStructure ptSituation,
      ServiceAlert.Builder serviceAlert) {

    SeverityEnumeration severity = ptSituation.getSeverity();
    if (severity != null) {
      ESeverity severityEnum = ESeverity.valueOfTpegCode(severity.value());
      serviceAlert.setSeverity(ServiceAlertLibrary.convertSeverity(severityEnum));
    }

    if (ptSituation.getPublicationWindow() != null) {
      HalfOpenTimestampRangeStructure window = ptSituation.getPublicationWindow();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.