Package uk.org.siri.siri

Examples of uk.org.siri.siri.OperatorRefStructure


    if (operators != null
        && !CollectionsLibrary.isEmpty(operators.getAffectedOperator())) {

      for (AffectedOperatorStructure operator : operators.getAffectedOperator()) {
        OperatorRefStructure operatorRef = operator.getOperatorRef();
        if (operatorRef == null || operatorRef.getValue() == null)
          continue;
        String agencyId = operatorRef.getValue();
        Affects.Builder affects = Affects.newBuilder();
        affects.setAgencyId(agencyId);
        serviceAlert.addAffects(affects);
      }
    }
View Full Code Here

TOP

Related Classes of uk.org.siri.siri.OperatorRefStructure

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.