summaryrefslogtreecommitdiff
path: root/test/traffic-incidents-service/feed/org.genivi.trafficincidentsfeed.tpegtec/src/main/java/org/genivi/tpegtecfeed/refimpl/TpegTecMessageHandler.java
blob: 4b89a642e344afea352757914ace9eb96d333e7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * Copyright (C) 2013 TomTom International B.V.
 * 
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
package org.genivi.tpegtecfeed.refimpl;

import org.genivi.trafficinfo.tpeg.tec.event.TECMessage;
import org.genivi.trafficinfo.tpeg.tpegfwktypes.ServiceIdentifier;


public interface TpegTecMessageHandler {

  public void languageChanged(String languageCode, String countryCode);
  
  public void handleMessagesStart(long channelId, String communicationChannelName, ServiceIdentifier originatorSID, byte COID);
  
  public void handleMessage(TECMessage tecMessage);
  
  public void handleMessagesEnd();
}