This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch fix/javadoc
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git
The following commit(s) were added to refs/heads/fix/javadoc by this push:
new 64d0660 Fix optional plugin javadoc
64d0660 is described below
commit 64d0660d21e9dd7664bedee7c9ca5b179d1ccf8f
Author: wu-sheng <[email protected]>
AuthorDate: Mon Feb 26 16:49:52 2018 +0800
Fix optional plugin javadoc
---
.../apm/plugin/jdbc/oracle/define/ConnectionInstrumentation.java | 6 +++---
.../plugin/jdbc/oracle/define/OracleCallableInstrumentation.java | 4 ++--
.../jdbc/oracle/define/OraclePrepareStatementInstrumentation.java | 2 +-
.../plugin/jdbc/oracle/define/OracleStatementInstrumentation.java | 4 ++--
.../apache/skywalking/apm/plugin/resin/v3/ResinV3Interceptor.java | 3 ---
.../apm/plugin/resin/v3/define/ResinV3Instrumentation.java | 5 +++--
.../apm/plugin/resin/v4/define/ResinV4Instrumentation.java | 5 +++--
7 files changed, 14 insertions(+), 15 deletions(-)
diff --git
a/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/ConnectionInstrumentation.java
b/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/ConnectionInstrumentation.java
index f454210..275b101 100644
---
a/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/ConnectionInstrumentation.java
+++
b/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/ConnectionInstrumentation.java
@@ -32,13 +32,13 @@ import static
net.bytebuddy.matcher.ElementMatchers.takesArguments;
/**
* {@link ConnectionInstrumentation} define that the oracle plugin intercept
the following methods that the class which
- * extend {@link oracle.jdbc.driver.PhysicalConnection}. <br/>
- * <pre>
+ * extend {@link oracle.jdbc.driver.PhysicalConnection}.
+ *
* 1. Enhance <code>prepareStatement</code> by
<code>org.apache.skywalking.apm.plugin.jdbc.oracle.CreatePreparedStatementInterceptor</code>
* 2. Enhance <code>prepareCall</code> by
<code>org.apache.skywalking.apm.plugin.jdbc.oracle.CreateCallableInterceptor</code>
* 3. Enhance <code>createStatement</code> by
<code>org.apache.skywalking.apm.plugin.jdbc.oracle.CreateStatementInterceptor</code>
* 4. Enhance <code>commit, rollback, close, releaseSavepoint</code> by
<code>org.apache.skywalking.apm.plugin.jdbc.define.ConnectionServiceMethodInterceptor</code>
- * </pre>
+ *
*
* @author zhangxin
*/
diff --git
a/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OracleCallableInstrumentation.java
b/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OracleCallableInstrumentation.java
index 1d0be4a..992fa8e 100644
---
a/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OracleCallableInstrumentation.java
+++
b/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OracleCallableInstrumentation.java
@@ -31,8 +31,8 @@ import static
org.apache.skywalking.apm.plugin.jdbc.oracle.Constants.PREPARED_ST
/**
* {@link OracleCallableInstrumentation} define that the oracle plugin
intercept the <code>execute, executeQuery and
- * executeUpdate</code> method in {@link
oracle.jdbc.driver.OracleCallableStatement} class by ${@link
- *
org.apache.skywalking.apm.plugin.jdbc.oracle.StatementExecuteMethodsInterceptor}
+ * executeUpdate</code> method in {@link
oracle.jdbc.driver.OracleCallableStatement} class by
+ * {@link
org.apache.skywalking.apm.plugin.jdbc.oracle.StatementExecuteMethodsInterceptor}
*
* @author zhangxin
*/
diff --git
a/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OraclePrepareStatementInstrumentation.java
b/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OraclePrepareStatementInstrumentation.java
index 093ded3..bbeacf7 100644
---
a/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OraclePrepareStatementInstrumentation.java
+++
b/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OraclePrepareStatementInstrumentation.java
@@ -31,7 +31,7 @@ import static
org.apache.skywalking.apm.plugin.jdbc.oracle.Constants.PREPARED_ST
/**
* {@link OraclePrepareStatementInstrumentation} define that the oracle plugin
intercept the <code>execute,
- * executeQuery, executeUpdate and executeLargeUpdate</code> method in {@link
oracle.jdbc.driver.OraclePreparedStatement}
+ * executeQuery, executeUpdate and executeLargeUpdate</code> method in
oracle.jdbc.driver.OraclePreparedStatement
* class by ${@link
org.apache.skywalking.apm.plugin.jdbc.oracle.StatementExecuteMethodsInterceptor}
*
* @author zhangxin
diff --git
a/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OracleStatementInstrumentation.java
b/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OracleStatementInstrumentation.java
index 94c15f2..1a1db46 100644
---
a/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OracleStatementInstrumentation.java
+++
b/apm-sniffer/apm-sdk-plugin/oracle-10.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/oracle/define/OracleStatementInstrumentation.java
@@ -31,8 +31,8 @@ import static
org.apache.skywalking.apm.plugin.jdbc.oracle.Constants.STATEMENT_I
/**
* {@link OracleStatementInstrumentation} define that the oracle plugin
intercept the <code>execute, executeQuery,
- * executeUpdate and executeLargeUpdate</code> method in {@link
oracle.jdbc.driver.OracleStatement} class by ${@link
- *
org.apache.skywalking.apm.plugin.jdbc.oracle.StatementExecuteMethodsInterceptor}
+ * executeUpdate and executeLargeUpdate</code> method in {@link
oracle.jdbc.driver.OracleStatement} class by
+ * {@link
org.apache.skywalking.apm.plugin.jdbc.oracle.StatementExecuteMethodsInterceptor}
*
* @author zhangxin
*/
diff --git
a/apm-sniffer/apm-sdk-plugin/resin-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v3/ResinV3Interceptor.java
b/apm-sniffer/apm-sdk-plugin/resin-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v3/ResinV3Interceptor.java
index c305f85..e61fbe7 100644
---
a/apm-sniffer/apm-sdk-plugin/resin-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v3/ResinV3Interceptor.java
+++
b/apm-sniffer/apm-sdk-plugin/resin-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v3/ResinV3Interceptor.java
@@ -34,9 +34,6 @@ import
org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.MethodInt
import org.apache.skywalking.apm.network.trace.component.ComponentsDefine;
/**
- * {@link ResinV3Interceptor} intercept method of{@link
com.caucho.server.dispatch.ServletInvocation#service(javax.servlet.ServletRequest,
- * javax.servlet.ServletResponse)} record the resin host, port ,url.
- *
* @author baiyang
*/
public class ResinV3Interceptor implements InstanceMethodsAroundInterceptor {
diff --git
a/apm-sniffer/apm-sdk-plugin/resin-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v3/define/ResinV3Instrumentation.java
b/apm-sniffer/apm-sdk-plugin/resin-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v3/define/ResinV3Instrumentation.java
index 8147839..37a91d4 100644
---
a/apm-sniffer/apm-sdk-plugin/resin-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v3/define/ResinV3Instrumentation.java
+++
b/apm-sniffer/apm-sdk-plugin/resin-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v3/define/ResinV3Instrumentation.java
@@ -31,8 +31,9 @@ import
org.apache.skywalking.apm.agent.core.plugin.interceptor.ConstructorInterc
import static net.bytebuddy.matcher.ElementMatchers.named;
/**
- * {@link ResinV3Instrumentation} presents that skywalking intercepts {@link
com.caucho.server.dispatch.ServletInvocation#service(javax.servlet.ServletRequest,
- * javax.servlet.ServletResponse)} by using {@link ResinV3Interceptor}.
+ * {@link ResinV3Instrumentation} presents that skywalking intercepts
+ * {@link
com.caucho.server.dispatch.ServletInvocation#service(javax.servlet.ServletRequest,javax.servlet.ServletResponse)}
+ * by using {@link ResinV3Interceptor}.
*
* @author baiyang
*/
diff --git
a/apm-sniffer/apm-sdk-plugin/resin-4.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v4/define/ResinV4Instrumentation.java
b/apm-sniffer/apm-sdk-plugin/resin-4.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v4/define/ResinV4Instrumentation.java
index ff42257..d605f07 100644
---
a/apm-sniffer/apm-sdk-plugin/resin-4.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v4/define/ResinV4Instrumentation.java
+++
b/apm-sniffer/apm-sdk-plugin/resin-4.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/resin/v4/define/ResinV4Instrumentation.java
@@ -31,8 +31,9 @@ import static net.bytebuddy.matcher.ElementMatchers.named;
import static
org.apache.skywalking.apm.agent.core.plugin.match.NameMatch.byName;
/**
- * {@link ResinV4Instrumentation} presents that skywalking intercepts {@link
com.caucho.server.dispatch.ServletInvocation#service(javax.servlet.ServletRequest,
- * javax.servlet.ServletResponse)} by using {@link ResinV4Interceptor}.
+ * {@link ResinV4Instrumentation} presents that skywalking intercepts
+ * {@link
com.caucho.server.dispatch.ServletInvocation#service(javax.servlet.ServletRequest,javax.servlet.ServletResponse)}
+ * by using {@link ResinV4Interceptor}.
*
* @author baiyang
*/
--
To stop receiving notification emails like this one, please contact
[email protected].