移动Restable位置
git-svn-id: http://code.alibabatech.com/svn/dubbo/trunk@178 1a56cb94-b969-4eaa-88fa-be21384802f2
This commit is contained in:
parent
c057bee0db
commit
3b208ee767
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.alibaba.dubbo.remoting;
|
||||
package com.alibaba.dubbo.common;
|
||||
|
||||
import com.alibaba.dubbo.common.URL;
|
||||
|
||||
|
|
@ -31,13 +31,9 @@
|
|||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>dubbo-remoting</artifactId>
|
||||
<artifactId>dubbo-common</artifactId>
|
||||
<version>${project.parent.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>servlet-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mortbay.jetty</groupId>
|
||||
<artifactId>jetty</artifactId>
|
||||
|
|
|
|||
|
|
@ -17,8 +17,8 @@ package com.alibaba.dubbo.remoting.http;
|
|||
|
||||
import java.net.InetSocketAddress;
|
||||
|
||||
import com.alibaba.dubbo.common.Resetable;
|
||||
import com.alibaba.dubbo.common.URL;
|
||||
import com.alibaba.dubbo.remoting.Resetable;
|
||||
|
||||
public interface HttpServer extends Resetable {
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,8 @@
|
|||
*/
|
||||
package com.alibaba.dubbo.remoting;
|
||||
|
||||
import com.alibaba.dubbo.common.Resetable;
|
||||
|
||||
/**
|
||||
* Remoting Client. (API/SPI, Prototype, ThreadSafe)
|
||||
*
|
||||
|
|
|
|||
|
|
@ -18,6 +18,8 @@ package com.alibaba.dubbo.remoting;
|
|||
import java.net.InetSocketAddress;
|
||||
import java.util.Collection;
|
||||
|
||||
import com.alibaba.dubbo.common.Resetable;
|
||||
|
||||
/**
|
||||
* Remoting Server. (API/SPI, Prototype, ThreadSafe)
|
||||
*
|
||||
|
|
|
|||
|
|
@ -17,10 +17,10 @@ package com.alibaba.dubbo.remoting.transport;
|
|||
|
||||
import com.alibaba.dubbo.common.Constants;
|
||||
import com.alibaba.dubbo.common.ExtensionLoader;
|
||||
import com.alibaba.dubbo.common.Resetable;
|
||||
import com.alibaba.dubbo.common.URL;
|
||||
import com.alibaba.dubbo.remoting.ChannelHandler;
|
||||
import com.alibaba.dubbo.remoting.Codec;
|
||||
import com.alibaba.dubbo.remoting.Resetable;
|
||||
|
||||
/**
|
||||
* AbstractEndpoint
|
||||
|
|
|
|||
Loading…
Reference in New Issue