コード例 #1
0
 public static Integer getFlightIdFromWebKey(String webKey) {
   if (webKey == null) return null;
   return AcFlightNumberPk.createWebKey(webKey).getFlightId();
 }
コード例 #2
0
 public static String getNumberFromWebKey(String webKey) {
   if (webKey == null) return null;
   return AcFlightNumberPk.createWebKey(webKey).getNumber();
 }
コード例 #3
0
 public static String getWebKey(Integer flightId, String carrierCode, String number) {
   return AcFlightNumberPk.createPk(flightId, carrierCode, number).getWebKey();
 }