View Javadoc
1   /*
2    * Copyright (C) 2013 4th Line GmbH, Switzerland
3    *
4    * The contents of this file are subject to the terms of either the GNU
5    * Lesser General Public License Version 2 or later ("LGPL") or the
6    * Common Development and Distribution License Version 1 or later
7    * ("CDDL") (collectively, the "License"). You may not use this file
8    * except in compliance with the License. See LICENSE.txt for more
9    * information.
10   *
11   * This program is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14   */
15  package org.fourthline.cling.test.transport;
16  
17  import org.fourthline.cling.UpnpServiceConfiguration;
18  import org.fourthline.cling.transport.impl.StreamClientConfigurationImpl;
19  import org.fourthline.cling.transport.impl.StreamClientImpl;
20  import org.fourthline.cling.transport.impl.StreamServerConfigurationImpl;
21  import org.fourthline.cling.transport.impl.StreamServerImpl;
22  import org.fourthline.cling.transport.spi.StreamClient;
23  import org.fourthline.cling.transport.spi.StreamServer;
24  
25  /**
26   * @author Christian Bauer
27   */
28  public class JDKServerJDKClientTest extends StreamServerClientTest {
29  
30      @Override
31      public StreamServer createStreamServer(int port) {
32          return new StreamServerImpl(
33              new StreamServerConfigurationImpl(port)
34          );
35      }
36  
37      @Override
38      public StreamClient createStreamClient(UpnpServiceConfiguration configuration) {
39          return new StreamClientImpl(
40              new StreamClientConfigurationImpl(
41                  configuration.getSyncProtocolExecutorService(),
42                  3
43              )
44          );
45      }
46  
47      // DISABLED, NOT SUPPORTED
48  
49      @Override
50      public void cancelled() throws Exception {
51      }
52  
53      @Override
54      public void checkAlive() throws Exception {
55      }
56  
57      @Override
58      public void checkAliveExpired() throws Exception {
59      }
60  
61      @Override
62      public void checkAliveCancelled() throws Exception {
63      }
64  }