Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
86 | rm5248 | 1 | /* |
2 | * Licensed to the Apache Software Foundation (ASF) under one |
||
3 | * or more contributor license agreements. See the NOTICE file |
||
4 | * distributed with this work for additional information |
||
5 | * regarding copyright ownership. The ASF licenses this file |
||
6 | * to you under the Apache License, Version 2.0 (the |
||
7 | * "License"); you may not use this file except in compliance |
||
8 | * with the License. You may obtain a copy of the License at |
||
9 | * |
||
10 | * http://www.apache.org/licenses/LICENSE-2.0 |
||
11 | * |
||
12 | * Unless required by applicable law or agreed to in writing, |
||
13 | * software distributed under the License is distributed on an |
||
14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
||
15 | * KIND, either express or implied. See the License for the |
||
16 | * specific language governing permissions and limitations |
||
17 | * under the License. |
||
18 | */ |
||
19 | package org.apache.sshd.client.future; |
||
20 | |||
21 | import org.apache.sshd.ClientSession; |
||
22 | import org.apache.sshd.common.RuntimeSshException; |
||
23 | import org.apache.sshd.common.future.DefaultSshFuture; |
||
24 | |||
25 | /** |
||
26 | * A default implementation of {@link ConnectFuture}. |
||
27 | * |
||
28 | * @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a> |
||
29 | */ |
||
30 | public class DefaultConnectFuture extends DefaultSshFuture<ConnectFuture> implements ConnectFuture { |
||
31 | |||
32 | public DefaultConnectFuture(Object lock) { |
||
33 | super(lock); |
||
34 | } |
||
35 | |||
36 | public ClientSession getSession() { |
||
37 | Object v = getValue(); |
||
38 | if (v instanceof RuntimeException) { |
||
39 | throw (RuntimeException) v; |
||
40 | } else if (v instanceof Error) { |
||
41 | throw (Error) v; |
||
42 | } else if (v instanceof Throwable) { |
||
43 | throw (RuntimeSshException) new RuntimeSshException("Failed to get the session.").initCause((Throwable) v); |
||
44 | } else if (v instanceof ClientSession) { |
||
45 | return (ClientSession) v; |
||
46 | } else { |
||
47 | return null; |
||
48 | } |
||
49 | } |
||
50 | |||
51 | public Throwable getException() { |
||
52 | Object v = getValue(); |
||
53 | if (v instanceof Throwable) { |
||
54 | return (Throwable) v; |
||
55 | } else { |
||
56 | return null; |
||
57 | } |
||
58 | } |
||
59 | |||
60 | public boolean isConnected() { |
||
61 | return getValue() instanceof ClientSession; |
||
62 | } |
||
63 | |||
64 | public void setSession(ClientSession session) { |
||
65 | if (session == null) { |
||
66 | throw new NullPointerException("session"); |
||
67 | } |
||
68 | setValue(session); |
||
69 | } |
||
70 | |||
71 | public void setException(Throwable exception) { |
||
72 | if (exception == null) { |
||
73 | throw new NullPointerException("exception"); |
||
74 | } |
||
75 | setValue(exception); |
||
76 | } |
||
77 | |||
78 | } |