~ubuntu-branches/ubuntu/saucy/restlet/saucy

« back to all changes in this revision

Viewing changes to org.restlet/src/org/restlet/engine/ConnectorHelper.java

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-06-11 16:25:45 UTC
  • Revision ID: package-import@ubuntu.com-20120611162545-5w2o0resi5y3pybc
Tags: upstream-2.0.14
ImportĀ upstreamĀ versionĀ 2.0.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Copyright 2005-2012 Restlet S.A.S.
 
3
 * 
 
4
 * The contents of this file are subject to the terms of one of the following
 
5
 * open source licenses: Apache 2.0 or LGPL 3.0 or LGPL 2.1 or CDDL 1.0 or EPL
 
6
 * 1.0 (the "Licenses"). You can select the license that you prefer but you may
 
7
 * not use this file except in compliance with one of these Licenses.
 
8
 * 
 
9
 * You can obtain a copy of the Apache 2.0 license at
 
10
 * http://www.opensource.org/licenses/apache-2.0
 
11
 * 
 
12
 * You can obtain a copy of the LGPL 3.0 license at
 
13
 * http://www.opensource.org/licenses/lgpl-3.0
 
14
 * 
 
15
 * You can obtain a copy of the LGPL 2.1 license at
 
16
 * http://www.opensource.org/licenses/lgpl-2.1
 
17
 * 
 
18
 * You can obtain a copy of the CDDL 1.0 license at
 
19
 * http://www.opensource.org/licenses/cddl1
 
20
 * 
 
21
 * You can obtain a copy of the EPL 1.0 license at
 
22
 * http://www.opensource.org/licenses/eclipse-1.0
 
23
 * 
 
24
 * See the Licenses for the specific language governing permissions and
 
25
 * limitations under the Licenses.
 
26
 * 
 
27
 * Alternatively, you can obtain a royalty free commercial license with less
 
28
 * limitations, transferable or non-transferable, directly at
 
29
 * http://www.restlet.com/products/restlet-framework
 
30
 * 
 
31
 * Restlet is a registered trademark of Restlet S.A.S.
 
32
 */
 
33
 
 
34
package org.restlet.engine;
 
35
 
 
36
import java.util.List;
 
37
import java.util.concurrent.CopyOnWriteArrayList;
 
38
 
 
39
import org.restlet.Connector;
 
40
import org.restlet.Context;
 
41
import org.restlet.data.Protocol;
 
42
 
 
43
/**
 
44
 * Base connector helper.
 
45
 * 
 
46
 * @author Jerome Louvel
 
47
 */
 
48
public abstract class ConnectorHelper<T extends Connector> extends
 
49
        RestletHelper<T> {
 
50
 
 
51
    /**
 
52
     * Returns the connector service associated to a request.
 
53
     * 
 
54
     * @return The connector service associated to a request.
 
55
     */
 
56
    public static org.restlet.service.ConnectorService getConnectorService() {
 
57
        org.restlet.service.ConnectorService result = null;
 
58
        org.restlet.Application application = org.restlet.Application
 
59
                .getCurrent();
 
60
 
 
61
        if (application != null) {
 
62
            result = application.getConnectorService();
 
63
        } else {
 
64
            result = new org.restlet.service.ConnectorService();
 
65
        }
 
66
 
 
67
        return result;
 
68
    }
 
69
 
 
70
    /** The protocols simultaneously supported. */
 
71
    private final List<Protocol> protocols;
 
72
 
 
73
    /**
 
74
     * Constructor.
 
75
     */
 
76
    public ConnectorHelper(T connector) {
 
77
        super(connector);
 
78
        this.protocols = new CopyOnWriteArrayList<Protocol>();
 
79
    }
 
80
 
 
81
    /**
 
82
     * Returns the helped Restlet context.
 
83
     * 
 
84
     * @return The helped Restlet context.
 
85
     */
 
86
    @Override
 
87
    public Context getContext() {
 
88
        if (Edition.CURRENT == Edition.GWT) {
 
89
            return null;
 
90
        }
 
91
 
 
92
        return super.getContext();
 
93
    }
 
94
 
 
95
    /**
 
96
     * Returns the protocols simultaneously supported.
 
97
     * 
 
98
     * @return The protocols simultaneously supported.
 
99
     */
 
100
    public List<Protocol> getProtocols() {
 
101
        return this.protocols;
 
102
    }
 
103
 
 
104
    @Override
 
105
    public void start() throws Exception {
 
106
    }
 
107
 
 
108
    @Override
 
109
    public void stop() throws Exception {
 
110
    }
 
111
 
 
112
    @Override
 
113
    public void update() throws Exception {
 
114
    }
 
115
 
 
116
}