~ubuntu-branches/ubuntu/natty/remuco/natty

« back to all changes in this revision

Viewing changes to client/src/remuco/comm/IServiceListener.java

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-08-18 23:06:11 UTC
  • Revision ID: james.westby@ubuntu.com-20090818230611-4z6ind4y4yxfa2z2
Tags: upstream-0.9.1.1
ImportĀ upstreamĀ versionĀ 0.9.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*   
 
2
 *   Remuco - A remote control system for media players.
 
3
 *   Copyright (C) 2006-2009 Oben Sonne <obensonne@googlemail.com>
 
4
 *
 
5
 *   This file is part of Remuco.
 
6
 *
 
7
 *   Remuco is free software: you can redistribute it and/or modify
 
8
 *   it under the terms of the GNU General Public License as published by
 
9
 *   the Free Software Foundation, either version 3 of the License, or
 
10
 *   (at your option) any later version.
 
11
 *
 
12
 *   Remuco is distributed in the hope that it will be useful,
 
13
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 *   GNU General Public License for more details.
 
16
 *
 
17
 *   You should have received a copy of the GNU General Public License
 
18
 *   along with Remuco.  If not, see <http://www.gnu.org/licenses/>.
 
19
 *   
 
20
 */
 
21
package remuco.comm;
 
22
 
 
23
import java.util.Hashtable;
 
24
 
 
25
import remuco.UserException;
 
26
 
 
27
/**
 
28
 * Interface for service listener.
 
29
 * 
 
30
 * @author Oben Sonne
 
31
 * 
 
32
 * @see IServiceFinder
 
33
 *
 
34
 */
 
35
public interface IServiceListener {
 
36
 
 
37
        /**
 
38
         * Notify a service listener that services has been found.
 
39
         * 
 
40
         * @param services
 
41
         *            a hash table with service names as keys and service connection
 
42
         *            URLs as values
 
43
         * @param ex
 
44
         *            <code>null</code> if service search was successful, otherwise
 
45
         *            a description of the occurred error (in that case,
 
46
         *            <i>services</i> is <code>null</code>)
 
47
         */
 
48
        public void notifyServices(Hashtable services, UserException ex);
 
49
 
 
50
}