summaryrefslogtreecommitdiff
path: root/src/traffic-incidents-service/org.genivi.trafficinfo/src/org/genivi/trafficincidentsservice/DefaultTrafficIncidentsUpdatesListener.java
blob: 3595cbd9e29919acff6fb8c8e3d5c134f7aebe5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
 * 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.trafficincidentsservice;

import java.util.logging.Level;
import java.util.logging.Logger;

import org.eclipse.emf.ecore.impl.EObjectImpl;
import org.genivi.common.Version;

public class DefaultTrafficIncidentsUpdatesListener extends EObjectImpl implements TrafficIncidentFeedListener {
  private final static Logger LOGGER = Logger.getLogger(DefaultTrafficIncidentsUpdatesListener.class.getName());

  static {
    LOGGER.setLevel(Level.SEVERE);
  }
  
  @Override
  public void getVersionReply(Version version) {
    // No action. Override this method if action is needed.
    LOGGER.info("Call to getVersionReply ignored!");
  }

  @Override
  public void getLanguageReply(String languageCode, String countryCode) {
    // No action. Override this method if action is needed.
    LOGGER.info("Call to getLanguageReply ignored!");
  }

  @Override
  public void registerFeedReply(int feedId) {
    // No action. Override this method if action is needed.
    LOGGER.info("Call to registerFeedReply ignored!");
  }

  @Override
  public void addLanguageListenerReply() {
    // No action. Override this method if action is needed.
    LOGGER.info("Call to addLanguageListenerReply ignored!");
  }

  @Override
  public void removeLanguageListenerReply() {
    // No action. Override this method if action is needed.
    LOGGER.info("Call to removeLanguageListenerReply ignored!");
  }


}