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.spi.StreamClient;
21  
22  /**
23   * @author Christian Bauer
24   */
25  public class JettyServerJDKClientTest extends JettyServerJettyClientTest {
26  
27      @Override
28      public StreamClient createStreamClient(UpnpServiceConfiguration configuration) {
29          return new StreamClientImpl(
30              new StreamClientConfigurationImpl(
31                  configuration.getSyncProtocolExecutorService(),
32                  3
33              )
34          );
35      }
36  
37      // DISABLED, NOT SUPPORTED
38  
39      @Override
40      public void cancelled() throws Exception {
41      }
42  
43      @Override
44      public void checkAlive() throws Exception {
45      }
46  
47      @Override
48      public void checkAliveExpired() throws Exception {
49      }
50  
51      @Override
52      public void checkAliveCancelled() throws Exception {
53      }
54  }