Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: jreceiver/common/rpc/xmlrpc/ScannerSettingsImpl.java


1   /* $Header: /cvsroot/jreceiver/jreceiver/src/jreceiver/common/rpc/xmlrpc/ScannerSettingsImpl.java,v 1.6 2002/12/29 00:44:07 reedesau Exp $ */
2   
3   package jreceiver.common.rpc.xmlrpc;
4   
5   //import java.util.
6   import java.net.URL;
7   
8   
9   import jreceiver.common.callback.rpc.xmlrpc.SettingListenerImpl;
10  import jreceiver.common.rec.security.User;
11  import jreceiver.common.rpc.RpcException;
12  import jreceiver.common.rpc.ScannerSettings;
13  
14  /**
15   * Scanner Settings-related queries to a remote server via XML-RPC.
16   * <p>
17   *
18   * @author Reed Esau
19   * @version $Revision: 1.6 $ $Date: 2002/12/29 00:44:07 $
20   */
21  public class ScannerSettingsImpl extends SettingListenerImpl implements ScannerSettings {
22  
23      /**
24       * ctor for this implementation
25       *
26       * @param remote_host
27       * @exception RpcException
28       */
29      public ScannerSettingsImpl(URL remote_host, User user)
30      throws RpcException {
31          super(ScannerSettings.HANDLER_NAME, remote_host, user);
32      }
33  }
34  /*
35  JRECEIVER MODIFIED BSD LICENSE
36  
37  Copyright (c) 2001-2002, Reed Esau (reed.esau@pobox.com) All rights reserved.
38  
39  Redistribution and use in source and binary forms, with or without
40  modification, are permitted provided that the following conditions are
41  met:
42  
43  Redistributions of source code must retain the above copyright notice,
44  this list of conditions and the following disclaimer.
45  
46  Redistributions in binary form must reproduce the above copyright notice,
47  this list of conditions and the following disclaimer in the documentation
48  and/or other materials provided with the distribution.
49  
50  Neither the name of the JReceiver Project
51  (http://jreceiver.sourceforge.net) nor the names of its contributors may
52  be used to endorse or promote products derived from this software without
53  specific prior written permission.
54  
55  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
56  IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
57  THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
58  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
59  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
60  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
61  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
62  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
63  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
64  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
65  POSSIBILITY OF SUCH DAMAGE.
66  */
67