mirror of https://github.com/alibaba/arthas.git
add tunnel-common module. #1548
parent
a2b45c45b8
commit
79c27ad13c
@ -0,0 +1,34 @@
|
||||
<?xml version="1.0"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.taobao.arthas</groupId>
|
||||
<artifactId>arthas-all</artifactId>
|
||||
<version>${revision}</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<artifactId>arthas-tunnel-common</artifactId>
|
||||
<name>arthas-tunnel-common</name>
|
||||
|
||||
<dependencies>
|
||||
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<finalName>arthas-tunnel-common</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.6</source>
|
||||
<target>1.6</target>
|
||||
<encoding>UTF-8</encoding>
|
||||
<showDeprecation>true</showDeprecation>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
@ -0,0 +1,25 @@
|
||||
package com.alibaba.arthas.tunnel.common;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author hengyunabc 2020-10-22
|
||||
*
|
||||
*/
|
||||
public class URIConstans {
|
||||
|
||||
/**
|
||||
* @see MethodConstants
|
||||
*/
|
||||
public static final String METHOD = "method";
|
||||
public static final String RESPONSE = "response";
|
||||
|
||||
/**
|
||||
* agent id
|
||||
*/
|
||||
public static final String ID = "id";
|
||||
|
||||
/**
|
||||
* tunnel server用于区分不同 tunnel client的内部 id
|
||||
*/
|
||||
public static final String CLIENT_CONNECTION_ID = "clientConnectionId";
|
||||
}
|
Loading…
Reference in New Issue