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.StreamServerConfigurationImpl;
19  import org.fourthline.cling.transport.impl.StreamServerImpl;
20  import org.fourthline.cling.transport.impl.jetty.StreamClientConfigurationImpl;
21  import org.fourthline.cling.transport.impl.jetty.StreamClientImpl;
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 JDKServerJettyClientTest 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      @Override
49      public void checkAliveExpired() throws Exception {
50      }
51  
52      @Override
53      public void checkAliveCancelled() throws Exception {
54      }
55  
56  }