Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
METRICS-3188(related): Removed RunExecEndPointAnalyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoldstein committed Feb 21, 2013
1 parent cae7ce3 commit b6595ee
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 259 deletions.

This file was deleted.

Expand Up @@ -15,17 +15,11 @@
*/
package com.springsource.insight.plugin.runexec;

import java.util.Collection;
import java.util.List;

import com.springsource.insight.intercept.endpoint.EndPointAnalyzer;
import com.springsource.insight.intercept.plugin.PluginRuntimeDescriptor;
import com.springsource.insight.util.ArrayUtil;

public class RunExecPluginRuntimeDescriptor extends PluginRuntimeDescriptor {
public static final String PLUGIN_NAME = "run-exec";
private static final RunExecPluginRuntimeDescriptor INSTANCE=new RunExecPluginRuntimeDescriptor();
private static final List<? extends EndPointAnalyzer> epAnalyzers=ArrayUtil.asUnmodifiableList(RunExecEndPointAnalyzer.getInstance());

private RunExecPluginRuntimeDescriptor () {
super();
Expand All @@ -35,11 +29,6 @@ public static final RunExecPluginRuntimeDescriptor getInstance() {
return INSTANCE;
}

@Override
public Collection<? extends EndPointAnalyzer> getEndPointAnalyzers() {
return epAnalyzers;
}

@Override
public String getPluginName() {
return PLUGIN_NAME;
Expand Down
Expand Up @@ -10,11 +10,6 @@
<insight:operation-view operation="run-runnable" template="com/springsource/insight/plugin/runexec/run-runnable.ftl"/>
<insight:operation-view operation="exec-runnable" template="com/springsource/insight/plugin/runexec/exec-runnable.ftl"/>

<bean id="runExecPluginEndPointAnalyzer"
class="com.springsource.insight.plugin.runexec.RunExecEndPointAnalyzer"
factory-method="getInstance"
lazy-init="true"
/>
<bean id="runExecPluginRuntimeDescriptor"
class="com.springsource.insight.plugin.runexec.RunExecPluginRuntimeDescriptor"
factory-method="getInstance"
Expand Down
Expand Up @@ -35,7 +35,6 @@ public class ExposedRunExecPluginSpringBeanTest
* tests if one bean is missing
*/
@Autowired(required=false) protected RunExecPluginRuntimeDescriptor runExecPluginRuntimeDescriptor;
@Autowired(required=false) protected RunExecEndPointAnalyzer runExecEndPointAnalyzer;

public ExposedRunExecPluginSpringBeanTest() {
super(RunExecPluginRuntimeDescriptor.class);
Expand Down

This file was deleted.

0 comments on commit b6595ee

Please sign in to comment.