Merge sources from S-Core's RSA git (release)
[sdk/ide/common-eplugin.git] / org.tizen.common.connection / src / org / tizen / common / connection / ConnectionPluginSurrogate.java
1 /*
2 *  Common
3 *
4 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5 *
6 * Contact: 
7 * Kangho Kim <kh5325.kim@samsung.com>
8 * Hyeongseok Heo <hyeongseok.heo@samsung.com>
9 * BonYong Lee <bonyong.lee@samsung.com>
10 * Gyeongseok Seo <gyeongseok.seo@samsung.com>
11
12 * Licensed under the Apache License, Version 2.0 (the "License");
13 * you may not use this file except in compliance with the License.
14 * You may obtain a copy of the License at
15 *
16 * http://www.apache.org/licenses/LICENSE-2.0
17 *
18 * Unless required by applicable law or agreed to in writing, software
19 * distributed under the License is distributed on an "AS IS" BASIS,
20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * See the License for the specific language governing permissions and
22 * limitations under the License.
23 *
24 * Contributors:
25 * - S-Core Co., Ltd
26 *
27 */
28
29 package org.tizen.common.connection;
30
31 import org.tizen.common.Surrogate;
32
33 /**
34  * The ConnectionPluginSurrogate class adapt ConnectionPlugin default object
35  * 
36  * @author BonYong Lee{@literal <bonyong.lee@samsung.com>} (S-Core)
37  * @author Gyeongseok Seo <gyeongseok.seo@samsung.com>
38  */
39 public class ConnectionPluginSurrogate implements Surrogate<ConnectionPlugin> {
40     @Override
41     public ConnectionPlugin getAdapter() {
42         return ConnectionPlugin.getDefault();
43     }
44 }