├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── README.textile ├── aslHeader.txt ├── collection-plugins ├── akka │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── akka │ │ │ │ ├── ActorRefOperationCollectionAspect.aj │ │ │ │ ├── AkkaDefinitions.java │ │ │ │ ├── AkkaPluginRuntimeDescriptor.java │ │ │ │ ├── AkkaUntypedActorEndPointAnalyzer.java │ │ │ │ ├── UntypedActorOperationCollectionAspect.aj │ │ │ │ ├── actorref │ │ │ │ ├── ActorRefHelper.java │ │ │ │ ├── ActorRefPropertyExtractor.java │ │ │ │ ├── PromiseActorRefPropertyExtractor.java │ │ │ │ └── RouterActorRefPropertyExtractor.java │ │ │ │ └── routing │ │ │ │ ├── AkkaRouterConfigHelper.java │ │ │ │ ├── RoundRobinRouterDataExtractor.java │ │ │ │ └── RouterConfigDataExtractor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-akka.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── akka │ │ │ └── akka.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── akka │ │ ├── AbstractAkkaOperationCollectionAspectTestSupport.java │ │ ├── UntypedActorOperationCollectionAspectTest.java │ │ ├── actorref │ │ ├── PromiseActorRefPropertyExtractorTest.java │ │ └── RouterActorRefPropertyExtractorTest.java │ │ └── routing │ │ ├── AkkaRouterConfigHelperTest.java │ │ └── RoundRobinRouterDataExtractorTest.java ├── axon │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── aslHeader.txt │ ├── pom.xml │ ├── screenshot.png │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── axonframework │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── axon │ │ │ │ ├── AbstractHandlerEndPointAnalyzer.java │ │ │ │ ├── Axon20OperationUtils.java │ │ │ │ ├── AxonOperationType.java │ │ │ │ ├── AxonPluginRuntimeDescriptor.java │ │ │ │ ├── AxonVersion.java │ │ │ │ ├── CommandBus1xDispatchOperationCollectionAspect.aj │ │ │ │ ├── CommandBus20DispatchOperationCollectionAspect.aj │ │ │ │ ├── CommandHandlerEndPointAnalyzer.java │ │ │ │ ├── CommandHandlerOperationCollectionAspect.aj │ │ │ │ ├── EventBus1xPublishOperationCollectionAspect.aj │ │ │ │ ├── EventBus20PublishOperationCollectionAspect.aj │ │ │ │ ├── EventHandlerEndPointAnalyzer.java │ │ │ │ ├── EventHandlerOperationCollectionAspect.aj │ │ │ │ ├── SagaOperationCollectionAspect.aj │ │ │ │ └── SagaOperationEndPointAnalyzer.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-axon.xml │ │ │ └── org │ │ │ └── axonframework │ │ │ └── insight │ │ │ └── plugin │ │ │ └── axon │ │ │ ├── command_bus_dispatch.ftl │ │ │ ├── command_handler_operation.ftl │ │ │ ├── event_bus_publish.ftl │ │ │ ├── event_handler_operation.ftl │ │ │ └── saga_operation.ftl │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── axonframework │ │ │ └── insight │ │ │ └── plugin │ │ │ └── axon │ │ │ ├── CommandHandlerOperationCollectionAspectTest.java │ │ │ ├── EventHandlerOperationCollectionAspectTest.java │ │ │ └── ExposedAxonPluginSpringBeanTest.java │ │ └── resources │ │ └── log4j.properties ├── cassandra │ ├── README.textile │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── cassandra │ │ │ │ ├── CQLFormatter.java │ │ │ │ ├── CQLToHtml.java │ │ │ │ ├── CassandraBoundStatementOperationCollectionAspect.aj │ │ │ │ ├── CassandraBuiltStatementOperationCollectionAspect.aj │ │ │ │ ├── CassandraExternalResourceAnalyzer.java │ │ │ │ ├── CassandraOperationFinalizer.java │ │ │ │ ├── CassandraRuntimePluginDescriptor.java │ │ │ │ ├── CassandraSessionExecuteOperationCollectionAspect.aj │ │ │ │ ├── CassandraSimpleStatementOperationCollectionAspect.aj │ │ │ │ └── WeakKeyHashMap.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-cassandra.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── cassandra │ │ │ ├── cassandra-connect.ftl │ │ │ └── cassandra.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── cassandra │ │ ├── CQLFormatterTest.java │ │ ├── CQLToHtmlTest.java │ │ ├── CassandraBoundStatementOperationCollectionAspectTest.java │ │ ├── CassandraBuiltStatementOperationCollectionAspectTest.java │ │ ├── CassandraExternalResourceAnalyzerTest.java │ │ ├── CassandraOperationFinalizerTest.java │ │ ├── CassandraSessionExecuteOperationCollectionAspectTest.java │ │ ├── CassandraSimpleStatementOperationCollectionAspectTest.java │ │ ├── MockBoundStatement.java │ │ ├── MockPreparedStatement.java │ │ ├── MockResultSetFuture.java │ │ ├── MockSession.java │ │ └── WeakKeyHashMapTest.java ├── cassandra12 │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── cassandra │ │ │ │ ├── AbsCassandraExternalResourceAnalyzer.java │ │ │ │ ├── AbstractCassandraOperationCollectionAspect.aj │ │ │ │ ├── CQLOperationCollectionAspect.aj │ │ │ │ ├── CassandraCQLExternalResourceAnalyzer.java │ │ │ │ ├── CassandraConnectExternalResourceAnalyzer.java │ │ │ │ ├── CassandraGetExternalResourceAnalyzer.java │ │ │ │ ├── CassandraPluginRuntimeDescriptor.java │ │ │ │ ├── CassandraRemoveExternalResourceAnalyzer.java │ │ │ │ ├── CassandraSystemExternalResourceAnalyzer.java │ │ │ │ ├── CassandraUpdateExternalResourceAnalyzer.java │ │ │ │ ├── ConnectOperationCollectionAspect.aj │ │ │ │ ├── GetOperationCollectionAspect.aj │ │ │ │ ├── OperationCollectionTypes.java │ │ │ │ ├── OperationUtils.aj │ │ │ │ ├── RemoveOperationCollectionAspect.aj │ │ │ │ ├── SystemOperationCollectionAspect.aj │ │ │ │ └── UpdateOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-cassandra.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── cassandra │ │ │ ├── conn.ftl │ │ │ ├── cql.ftl │ │ │ ├── get.ftl │ │ │ ├── remove.ftl │ │ │ ├── system.ftl │ │ │ └── update.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── cassandra │ │ │ ├── AbstractOperationCollectionAspectTest.java │ │ │ ├── CassandraUnitTests.java │ │ │ ├── ConnectOperationCollectionAspectTest.java │ │ │ ├── GetOperationCollectionAspectTest.java │ │ │ ├── InsertOperationCollectionAspectTest.java │ │ │ ├── SystemOperationCollectionAspectTest.java │ │ │ └── embeded │ │ │ └── EmbeddedCassandraService.java │ │ └── resources │ │ └── cassandra.yaml ├── eclipse-persistence │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── eclipse │ │ │ │ └── persistence │ │ │ │ ├── DatabaseSessionMetricsGenerator.java │ │ │ │ ├── DatabaseSessionOperationCollectionAspect.aj │ │ │ │ ├── EclipsePersistenceCollectionAspect.aj │ │ │ │ ├── EclipsePersistenceDefinitions.java │ │ │ │ ├── EclipsePersistenceMetricsGenerator.java │ │ │ │ ├── EclipsePersistencePluginRuntimeDescriptor.java │ │ │ │ ├── SessionQueryMetricsGenerator.java │ │ │ │ ├── SessionQueryOperationCollectionAspect.aj │ │ │ │ ├── SessionQueryOperationJoinPointFinalizer.java │ │ │ │ ├── TransactionOperationCollectionAspect.aj │ │ │ │ └── TransactionOperationMetricsGenerator.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-eclipse-persistence.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── eclipse │ │ │ └── persistence │ │ │ ├── db.ftl │ │ │ ├── query.ftl │ │ │ └── tx.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── eclipse │ │ └── persistence │ │ ├── DatabaseSessionMetricsGeneratorTest.java │ │ ├── DatabaseSessionOperationCollectionAspectTest.java │ │ ├── EclipsePersistenceCollectionTestSupport.java │ │ ├── EclipsePersistenceMetricsGeneratorTestSupport.java │ │ ├── MockDatabaseSession.java │ │ ├── SessionQueryMetricsGeneratorTest.java │ │ ├── SessionQueryOperationCollectionAspectTest.java │ │ ├── TransactionOperationCollectionAspectTest.java │ │ └── TransactionOperationMetricsGeneratorTest.java ├── ehcache │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── ehcache │ │ │ │ ├── EhcacheCollapsingFrameHelper.java │ │ │ │ ├── EhcacheDefinitions.java │ │ │ │ ├── EhcacheExternalResourceAnalyzer.java │ │ │ │ ├── EhcacheGetOperationCollectionAspect.aj │ │ │ │ ├── EhcacheMethodOperationCollectionAspect.aj │ │ │ │ ├── EhcachePutOperationCollectionAspect.aj │ │ │ │ ├── EhcacheRemoveOperationCollectionAspect.aj │ │ │ │ ├── EhcacheReplaceOperationCollectionAspect.aj │ │ │ │ └── EhcahePluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-ehcache.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── ehcache │ │ │ └── ehcache.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── ehcache │ │ │ ├── EhcacheBenchmarkTest.java │ │ │ ├── EhcacheGetOperationCollectionAspectTest.java │ │ │ ├── EhcacheOperationCollectionAspectTestSupport.java │ │ │ ├── EhcachePutOperationCollectionAspectTest.java │ │ │ ├── EhcacheRemoveOperationCollectionAspectTest.java │ │ │ ├── EhcacheReplaceOperationCollectionAspectTest.java │ │ │ └── EhcacheResourceAnalyzerTest.java │ │ └── resources │ │ ├── ehcache.xml │ │ └── ehcache.xsd ├── ejb3 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ ├── collection │ │ │ │ └── method │ │ │ │ │ └── TrailingMethodOperationCollectionAspect.aj │ │ │ │ └── plugin │ │ │ │ └── ejb3 │ │ │ │ ├── Ejb3LocalServiceDefinitions.java │ │ │ │ ├── Ejb3LocalServiceEndPointAnalyzer.java │ │ │ │ ├── Ejb3LocalServiceOperationCollectionAspect.aj │ │ │ │ └── Ejb3PluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-ejb3.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── ejb3 │ │ │ └── ejb3.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── ejb3 │ │ ├── Ejb3LocalServiceOperationCollectionAspectTest.java │ │ ├── ExampleEjb3LocalService.java │ │ ├── ExampleStatefulEjb3LocalServiceAction.java │ │ └── ExampleStatelessEjb3LocalServiceAction.java ├── files-tracker │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── files │ │ │ │ └── tracker │ │ │ │ ├── AbstractFilesTrackerAspectSupport.java │ │ │ │ ├── FileCloseCollectionAspect.aj │ │ │ │ ├── FileInputCollectionAspect.aj │ │ │ │ ├── FileOpenTrackerAspectSupport.java │ │ │ │ ├── FileOutputCollectionAspect.aj │ │ │ │ ├── FilesTrackerDefinitions.java │ │ │ │ ├── FilesTrackerExternalResourceAnalyzer.java │ │ │ │ └── FilesTrackerPluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-files-tracker.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── files │ │ │ └── tracker │ │ │ └── files-tracker.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── files │ │ │ └── tracker │ │ │ ├── FileInputCollectionAspectTest.java │ │ │ ├── FileOutputCollectionAspectTest.java │ │ │ ├── FilesCacheTest.java │ │ │ ├── FilesOpenTrackerAspectTestSupport.java │ │ │ ├── FilesTrackerAspectTestSupport.java │ │ │ └── FilesTrackerExternalResourceAnalyzerTest.java │ │ └── resources │ │ └── input-test-file.txt ├── gemfire-light │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── gemfire │ │ │ │ ├── AbstractGemFireCollectionAspect.aj │ │ │ │ ├── AbstractGemFireExternalResourceAnalyzer.java │ │ │ │ ├── GemFireDefenitions.java │ │ │ │ ├── GemFireLightPluginRuntimeDescriptor.java │ │ │ │ ├── GemFireLightPointcuts.aj │ │ │ │ ├── GemFireQueryCollectionAspect.aj │ │ │ │ ├── GemFireQueryExternalResourceAnalyzer.java │ │ │ │ ├── GemFireRemoteExternalResourceAnalyzer.java │ │ │ │ └── GemFireRemoteOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-gemfire-light.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── gemfire │ │ │ ├── gemfire_query_operation.ftl │ │ │ └── gemfire_remote_operation.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── gemfire │ │ │ ├── AbstractGemFireExternalResourceAnalyzerTestSupport.java │ │ │ ├── GemFireAspectTestSupport.java │ │ │ ├── GemFireQueryCollectionAspectTest.java │ │ │ ├── GemFireQueryExternalResourceAnalyzerTest.java │ │ │ ├── GemFireRemoteCollectionAspectTest.java │ │ │ └── GemFireRemoteExternalResourceAnalyzerTest.java │ │ └── resources │ │ └── gemfire.xml ├── gemfire │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── gemfire │ │ │ │ ├── AbstractGemFireCollectionAspect.aj │ │ │ │ ├── AbstractGemFireExternalResourceAnalyzer.java │ │ │ │ ├── GemFireDefenitions.java │ │ │ │ ├── GemFirePluginRuntimeDescriptor.java │ │ │ │ ├── GemFireQueryCollectionAspect.aj │ │ │ │ ├── GemFireQueryExternalResourceAnalyzer.java │ │ │ │ ├── GemFireRegionCollectionAspect.aj │ │ │ │ ├── GemFireRegionExternalResourceAnalyzer.java │ │ │ │ ├── GemFireRemoteExternalResourceAnalyzer.java │ │ │ │ └── GemFireRemoteOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-gemfire.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── gemfire │ │ │ ├── gemfire_query_operation.ftl │ │ │ ├── gemfire_region_operation.ftl │ │ │ └── gemfire_remote_operation.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── gemfire │ │ │ ├── AbstractGemFireExternalResourceAnalyzerTestSupport.java │ │ │ ├── GemFireAspectTestSupport.java │ │ │ ├── GemFireQueryCollectionAspectTest.java │ │ │ ├── GemFireQueryExternalResourceAnalyzerTest.java │ │ │ ├── GemFireRegionCollectionAspectTest.java │ │ │ ├── GemFireRegionExternalResourceAnalyzerTest.java │ │ │ ├── GemFireRemoteCollectionAspectTest.java │ │ │ └── GemFireRemoteExternalResourceAnalyzerTest.java │ │ └── resources │ │ └── gemfire.xml ├── grails │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── grails │ │ │ │ ├── GrailsControllerClassAspect.aj │ │ │ │ ├── GrailsControllerInstanceAspect.aj │ │ │ │ ├── GrailsControllerMethodEndPointAnalyzer.java │ │ │ │ ├── GrailsControllerMetricCollector.java │ │ │ │ ├── GrailsControllerOperationCollectionAspect.aj │ │ │ │ ├── GrailsControllerPointcuts.aj │ │ │ │ ├── GrailsControllerStateKeeper.java │ │ │ │ └── GrailsPluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-grails.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── grails │ │ │ └── grails_controller_method.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── grails │ │ │ ├── ExposedGrailsPluginSpringBeanTest.java │ │ │ ├── GrailsControllerMethodEndPointAnalyzerTest.java │ │ │ ├── GrailsControllerMethodViewTest.java │ │ │ ├── GrailsControllerMetricCollectorTest.java │ │ │ ├── GrailsControllerOperationCollectionAspectTest.java │ │ │ └── GrailsControllerStateKeeperTest.java │ │ └── resources │ │ └── META-INF │ │ └── test-app-context.xml ├── hadoop │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── hadoop │ │ │ │ ├── HadoopExternalResourceAnalyzer.java │ │ │ │ ├── HadoopPluginRuntimeDescriptor.java │ │ │ │ ├── JobClientOperationCollectionAspect.aj │ │ │ │ ├── JobOperationCollectionAspect.aj │ │ │ │ ├── MapOperationCollectionAspect.aj │ │ │ │ ├── OperationCollectionTypes.java │ │ │ │ └── ReduceOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-hadoop.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── hadoop │ │ │ ├── job.ftl │ │ │ ├── mapper.ftl │ │ │ └── reducer.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── hadoop │ │ │ ├── JobOperationCollectionAspectTest.java │ │ │ └── WordCount.java │ │ └── resources │ │ └── input.txt ├── hibernate │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── hibernate │ │ │ │ ├── HibernateEventCollectionAspect.aj │ │ │ │ ├── HibernatePluginRuntimeDescriptor.java │ │ │ │ └── HibernateSessionOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-hibernate.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── hibernate │ │ │ └── hibernate.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── hibernate │ │ ├── DummyDirtyCheckListenerImpl.java │ │ ├── DummyFlushEventListenerImpl.java │ │ ├── DummySessionImpl.java │ │ ├── HibernateEventCollectionAspectTest.java │ │ └── HibernateSessionOperationCollectionAspectTest.java ├── httpclient3 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── apache │ │ │ │ └── http │ │ │ │ └── hc3 │ │ │ │ ├── HC3PluginRuntimeDescriptor.java │ │ │ │ ├── HttpClientDefinitions.java │ │ │ │ ├── HttpClientExecutionCollectionAspect.aj │ │ │ │ ├── HttpExternalResourceAnalyzer.java │ │ │ │ ├── HttpPlaceholderMethod.java │ │ │ │ └── HttpStatusTraceErrorAnalyzer.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-apache-httpclient3.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── apache │ │ │ └── http │ │ │ └── hc3 │ │ │ └── hc3.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── apache │ │ └── http │ │ └── hc3 │ │ ├── HttpClientExecutionCollectionAspectTest.java │ │ ├── HttpExternalResourceAnalyzerTest.java │ │ └── HttpPlaceholderMethodTest.java ├── httpclient4 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── apache │ │ │ │ └── http │ │ │ │ └── hc4 │ │ │ │ ├── HC4PluginRuntimeDescriptor.java │ │ │ │ ├── HttpClientDefinitions.java │ │ │ │ ├── HttpClientExecutionCollectionAspect.aj │ │ │ │ ├── HttpExternalResourceAnalyzer.java │ │ │ │ ├── HttpPlaceholderRequest.java │ │ │ │ └── HttpStatusTraceErrorAnalyzer.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-apache-httpclient4.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── apache │ │ │ └── http │ │ │ └── hc4 │ │ │ └── hc4.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── apache │ │ └── http │ │ └── hc4 │ │ ├── HttpClientExecutionCollectionAspectTest.java │ │ ├── HttpExternalResourceAnalyzerTest.java │ │ └── HttpPlaceholderRequestTest.java ├── jax-rs │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── jaxrs │ │ │ │ ├── JaxrsDefinitions.java │ │ │ │ ├── JaxrsEndPointAnalyzer.java │ │ │ │ ├── JaxrsOperationCollectionAspect.aj │ │ │ │ ├── JaxrsParamType.java │ │ │ │ └── JaxrsPluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-jax-rs.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jaxrs │ │ │ └── jax-rs.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── jaxrs │ │ ├── JaxrsOperationCollectionAspectTest.java │ │ ├── RestServiceDefinitions.java │ │ └── RestServiceInstance.java ├── jcr │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── jcr │ │ │ │ ├── GetNodeOperationCollectionAspect.aj │ │ │ │ ├── ItemOperationCollectionAspect.aj │ │ │ │ ├── JCRCollectionUtils.java │ │ │ │ ├── JCREndPointAnalyzer.java │ │ │ │ ├── JCRPluginRuntimeDescriptor.java │ │ │ │ ├── LoginOperationCollectionAspect.aj │ │ │ │ ├── OperationCollectionTypes.java │ │ │ │ ├── QueryOperationCollectionAspect.aj │ │ │ │ ├── SaveOperationCollectionAspect.aj │ │ │ │ └── WorkspaceOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-jcr.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jcr │ │ │ ├── get.ftl │ │ │ ├── item.ftl │ │ │ ├── login.ftl │ │ │ ├── query.ftl │ │ │ └── workspace.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jcr │ │ │ ├── GetOperationCollectionAspectTest.java │ │ │ ├── ItemOperationCollectionAspectTest.java │ │ │ ├── LoginOperationCollectionAspectTest.java │ │ │ ├── SaveOperationCollectionAspectTest.java │ │ │ └── SimpleTests.java │ │ └── resources │ │ └── repository.xml ├── jdbc │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── jdbc │ │ │ │ ├── ConnectionsTracker.java │ │ │ │ ├── DatabaseJDBCURIAnalyzer.java │ │ │ │ ├── JdbcConnectionCloseOperationCollectionAspect.aj │ │ │ │ ├── JdbcDriverConnectOperationCollectionAspect.aj │ │ │ │ ├── JdbcDriverExternalResourceAnalyzer.java │ │ │ │ ├── JdbcOperationExternalResourceAnalyzer.java │ │ │ │ ├── JdbcOperationFinalizer.java │ │ │ │ ├── JdbcPreparedStatementOperationCollectionAspect.aj │ │ │ │ ├── JdbcQueryExternalResourceGenerator.java │ │ │ │ ├── JdbcRuntimePluginDescriptor.java │ │ │ │ ├── JdbcStatementOperationCollectionAspect.aj │ │ │ │ ├── SQLFormatter.java │ │ │ │ ├── SqlToHtml.java │ │ │ │ ├── TopLevelJdbcOperationFilter.java │ │ │ │ ├── WeakKeyHashMap.java │ │ │ │ └── parser │ │ │ │ ├── AbstractSqlParser.java │ │ │ │ ├── AbstractSqlPatternParser.java │ │ │ │ ├── DatabaseType.java │ │ │ │ ├── JdbcUrlMetaData.java │ │ │ │ ├── JdbcUrlParser.java │ │ │ │ ├── SimpleJdbcUrlMetaData.java │ │ │ │ ├── SimpleSqlUrlParser.java │ │ │ │ ├── SqlParserPattern.java │ │ │ │ └── parsers │ │ │ │ ├── DB2SqlParser.java │ │ │ │ ├── DatabaseURL.java │ │ │ │ ├── HsqlParser.java │ │ │ │ ├── HsqlProperties.java │ │ │ │ ├── MssqlParser.java │ │ │ │ ├── MySqlParser.java │ │ │ │ ├── OracleParser.java │ │ │ │ ├── OracleRACParser.java │ │ │ │ ├── PostgresSqlParser.java │ │ │ │ ├── SqlFireParser.java │ │ │ │ ├── SqlFirePeerParser.java │ │ │ │ └── SybaseSqlParser.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-jdbc.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jdbc │ │ │ ├── jdbc-connect.ftl │ │ │ └── jdbc.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jdbc │ │ │ ├── AbstractDatabaseJDBCURIAnalyzerTest.java │ │ │ ├── ConnectionsTrackerTest.java │ │ │ ├── DatabaseJDBCURIAnalyzerTest.java │ │ │ ├── JdbcConnectionCloseOperationCollectionAspectTest.java │ │ │ ├── JdbcConnectionOperationCollectionTestSupport.java │ │ │ ├── JdbcDriverConnectOperationCollectionAspectTest.java │ │ │ ├── JdbcOperationFinalizerTest.java │ │ │ ├── JdbcPreparedStatementOperationCollectionAspectTest.java │ │ │ ├── JdbcQueryExternalResourceGeneratorTest.java │ │ │ ├── JdbcStatementOperationCollectionAspectTest.java │ │ │ ├── JdbcStatementOperationCollectionTestSupport.java │ │ │ ├── JdbcTraceIntegrationTest.java │ │ │ ├── ParamLoggingPreparedStatementTest.java │ │ │ ├── PoolingConnectionTest.java │ │ │ ├── SQLFormatterTest.java │ │ │ ├── SqlToHtmlTest.java │ │ │ ├── StoredProcedureExample.java │ │ │ ├── WeakKeyHashMapTest.java │ │ │ ├── helpers │ │ │ ├── AbstractConnection.java │ │ │ ├── AbstractDatabaseMetaData.java │ │ │ ├── AbstractStatement.java │ │ │ └── jdk16 │ │ │ │ ├── Jdk16Connection.java │ │ │ │ ├── Jdk16DatabaseMetaData.java │ │ │ │ ├── Jdk16PreparedStatementCollectionAspectTest.java │ │ │ │ ├── Jdk16Statement.java │ │ │ │ └── Jdk16StatementOperationCollectionAspectTest.java │ │ │ └── parsers │ │ │ ├── DB2SqlParserTest.java │ │ │ ├── HsqlParserTest.java │ │ │ ├── MssqlParserTest.java │ │ │ ├── MySqlParserTest.java │ │ │ ├── OracleParserTest.java │ │ │ ├── OracleRACParserTest.java │ │ │ ├── PostgresSqlParserTest.java │ │ │ ├── SimpleSqlUrlParserTestSupport.java │ │ │ ├── SqlFireParserTest.java │ │ │ ├── SqlFirePeerParserTest.java │ │ │ ├── SqlParserTestImpl.java │ │ │ ├── SqlTestEntry.java │ │ │ └── SybaseSqlParserTest.java │ │ └── resources │ │ ├── JdbcTraceTest.ser │ │ ├── jdbc-test-context.xml │ │ ├── jdbc.properties │ │ ├── schema.sql │ │ └── testdata.sql ├── jms │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── jms │ │ │ │ ├── AbstractJMSCollectionAspect.aj │ │ │ │ ├── AbstractJMSMetricsGenerator.java │ │ │ │ ├── AbstractJMSResourceAnalyzer.java │ │ │ │ ├── DeliveryModeType.java │ │ │ │ ├── DestinationType.java │ │ │ │ ├── JMSConsumerCollectionAspect.aj │ │ │ │ ├── JMSConsumerResourceAnalyzer.java │ │ │ │ ├── JMSEndPointAnalyzer.java │ │ │ │ ├── JMSListenerReceiveMetricsGenerator.java │ │ │ │ ├── JMSMessageListenerCollectionAspect.aj │ │ │ │ ├── JMSMessageListenerResourceAnalyzer.java │ │ │ │ ├── JMSPluginOperationType.java │ │ │ │ ├── JMSPluginUtils.java │ │ │ │ ├── JMSProducerCollectionAspect.aj │ │ │ │ ├── JMSProducerResourceAnalyzer.java │ │ │ │ ├── JMSReceiveMetricsGenerator.java │ │ │ │ ├── JMSSendMetricsGenerator.java │ │ │ │ ├── JmsPluginRuntimeDescriptor.java │ │ │ │ ├── JmsTraceSourceAnalyzer.java │ │ │ │ ├── MessageOperationMap.java │ │ │ │ ├── MessageType.java │ │ │ │ └── MessageWrapper.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-jms.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jms │ │ │ └── jms.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jms │ │ │ ├── AbstractJMSCollectionAspectTestSupport.java │ │ │ ├── AbstractJMSMetricsGeneratorTest.java │ │ │ ├── AbstractJMSResourceAnalyzerTest.java │ │ │ ├── JMSConsumerCollectionAspectTest.java │ │ │ ├── JMSConsumerResourceAnalyzerTest.java │ │ │ ├── JMSListenerReceiveMetricsGeneratorTest.java │ │ │ ├── JMSMessageListenerCollectionAspectTest.java │ │ │ ├── JMSMessageListenerResourceAnalyzerTest.java │ │ │ ├── JMSPluginUtilsTest.java │ │ │ ├── JMSProducerCollectionAspectTest.java │ │ │ ├── JMSProducerResourceAnalyzerTest.java │ │ │ ├── JMSReceiveMetricsGeneratorTest.java │ │ │ ├── JMSSendMetricsGeneratorTest.java │ │ │ ├── JmsTraceSourceAnalyzerTest.java │ │ │ └── MessageOperationMapTest.java │ │ └── resources │ │ └── JmsTraceTest.ser ├── jmx │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── jmx │ │ │ │ ├── JmxAttributeOperationCollectionSupport.aj │ │ │ │ ├── JmxGetMultipleAttrsOperationCollectionAspect.aj │ │ │ │ ├── JmxGetSingleAttributeOperationCollectionAspect.aj │ │ │ │ ├── JmxInvocationEndPointAnalyzer.java │ │ │ │ ├── JmxInvokeOperationCollectionAspect.aj │ │ │ │ ├── JmxMultiAttributeOperationCollectionSupport.aj │ │ │ │ ├── JmxOperationCollectionAspectSupport.aj │ │ │ │ ├── JmxPluginRuntimeDescriptor.java │ │ │ │ ├── JmxSetMultipleAttrsOperationCollectionAspect.aj │ │ │ │ ├── JmxSetSingleAttributeOperationCollectionAspect.aj │ │ │ │ ├── JmxSingleAttributeOperationCollectionSupport.aj │ │ │ │ └── MultiAttributeOperationCollector.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-jmx.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jmx │ │ │ ├── javax-mgmt-attr.ftl │ │ │ └── javax-mgmt-invoke.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jmx │ │ │ ├── DelegatingMBeanServer.java │ │ │ ├── ExposedJmxPluginSpringBeanTest.java │ │ │ ├── JmxAttributeOperationTestSupport.java │ │ │ ├── JmxGetMultipleAttrsOperationCollectionAspectTest.java │ │ │ ├── JmxGetSingleAttributeOperationCollectionAspectTest.java │ │ │ ├── JmxInvocationEndPointAnalyzerTest.java │ │ │ ├── JmxInvokeOperationCollectionAspectTest.java │ │ │ ├── JmxMultiAttributeCollectionTestSupport.java │ │ │ ├── JmxOperationCollectionTestSupport.java │ │ │ ├── JmxSetMultipleAttrsOperationCollectionAspectTest.java │ │ │ ├── JmxSetSingleAttributeOperationCollectionAspectTest.java │ │ │ ├── JmxSingleAttributeOperationTestSupport.java │ │ │ └── SpringMBeanComponent.java │ │ └── resources │ │ └── META-INF │ │ └── jmx-plugin-test-context.xml ├── jndi │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── jndi │ │ │ │ ├── JndiBindOperationCollectionAspect.aj │ │ │ │ ├── JndiLookupOperationCollectionAspect.aj │ │ │ │ ├── JndiOperationCollectionSupport.aj │ │ │ │ ├── JndiPluginRuntimeDescriptor.java │ │ │ │ └── JndiResourceCollectionFilter.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-jndi.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jndi │ │ │ ├── javax-naming-bind.ftl │ │ │ └── javax-naming-lookup.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── jndi │ │ ├── ExposedJndiPluginSpringBeanTest.java │ │ ├── JndiBindOperationCollectionAspectTest.java │ │ ├── JndiLookupOperationCollectionAspectTest.java │ │ ├── JndiOperationCollectionAspectTestSupport.java │ │ ├── JndiResourceCollectionFilterTest.java │ │ └── JndiTestContext.java ├── jpa │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── jpa │ │ │ │ ├── EntityTransactionCollectionAspect.aj │ │ │ │ ├── JpaDefinitions.java │ │ │ │ ├── JpaEntityManagerCollectionAspect.aj │ │ │ │ ├── JpaEntityManagerDomainObjectAspect.aj │ │ │ │ ├── JpaEntityManagerLifecycleAspect.aj │ │ │ │ └── JpaPluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-jpa.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jpa │ │ │ ├── entity-manager.ftl │ │ │ └── tx-entity.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jpa │ │ │ ├── EntityTransactionCollectionAspectTest.java │ │ │ ├── JpaEntityManagerCollectionTestSupport.java │ │ │ ├── JpaEntityManagerDomainObjectAspectTest.java │ │ │ ├── JpaEntityManagerLifecycleAspectTest.java │ │ │ ├── TestEntity.java │ │ │ ├── TransactionalJpaEntityManagerDomainAspectTest.java │ │ │ └── TransactionalJpaEntityManagerTestSupport.java │ │ └── resources │ │ ├── META-INF │ │ ├── jpaTestContext.properties │ │ ├── jpaTestContext.xml │ │ └── persistence.xml │ │ └── db │ │ └── hsqldb │ │ └── dbInit.sql ├── jta │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── jta │ │ │ │ ├── JtaDefinitions.java │ │ │ │ ├── JtaOperationCollectionAspect.aj │ │ │ │ ├── JtaPluginRuntimeDescriptor.java │ │ │ │ ├── TransactionManagerOperationCollectionAspect.aj │ │ │ │ ├── TransactionOperationCollectionAspect.aj │ │ │ │ └── UserTransactionOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-jta.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jta │ │ │ └── jta.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── jta │ │ ├── JtaOperationCollectionAspectTestSupport.java │ │ ├── TransactionManagerOperationCollectionAspectTest.java │ │ ├── TransactionOperationCollectionAspectTest.java │ │ └── UserTransactionOperationCollectionAspectTest.java ├── jws │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── jws │ │ │ │ ├── EndpointMethodOperationCollectionAspect.aj │ │ │ │ ├── JwsDefinitions.java │ │ │ │ ├── JwsEndPointAnalyzer.java │ │ │ │ ├── JwsOperationCollectionAspect.aj │ │ │ │ └── JwsPluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-jws.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── jws │ │ │ └── jws.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── jws │ │ ├── EndpointMethodOperationCollectionAspectTest.java │ │ ├── JwsOperationCollectionAspectTest.java │ │ ├── JwsServiceDefinitions.java │ │ └── JwsServiceInstance.java ├── ldap │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── ldap │ │ │ │ ├── DirContextSearchCollectionAspect.aj │ │ │ │ ├── LdapDefinitions.java │ │ │ │ ├── LdapExternalResourceAnalyzer.java │ │ │ │ ├── LdapOperationCollectionAspectSupport.aj │ │ │ │ └── LdapPluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-ldap.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── ldap │ │ │ └── javax-naming-ldap.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── ldap │ │ │ ├── DirContextCreator.java │ │ │ ├── DirContextSearchCollectionAspectTest.java │ │ │ ├── LdapOperationCollectionAspectTestSupport.java │ │ │ └── TestLdapContext.java │ │ └── resources │ │ └── META-INF │ │ └── testUsers.ldif ├── logging │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── logging │ │ │ │ ├── CommonsLoggingOperationCollectionAspect.aj │ │ │ │ ├── Log4jLoggingOperationCollectionAspect.aj │ │ │ │ ├── LoggingDefinitions.java │ │ │ │ ├── LoggingMethodOperationCollectionAspect.aj │ │ │ │ ├── LoggingPluginRuntimeDescriptor.java │ │ │ │ ├── LoggingTraceErrorAnalyzer.java │ │ │ │ └── Slf4jLoggingOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-logging.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── logging │ │ │ └── logging.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── logging │ │ │ ├── CommonsLoggingOperationCollectionAspectTest.java │ │ │ ├── Log4jLoggingOperationCollectionAspectTest.java │ │ │ ├── LoggingMethodOperationCollectionAspectTestSupport.java │ │ │ └── Slf4jLoggingOperationCollectionAspectTest.java │ │ └── resources │ │ └── log4j.xml ├── mail │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── mail │ │ │ │ ├── JavaMailSenderOperationCollectionAspect.aj │ │ │ │ ├── MailDefinitions.java │ │ │ │ ├── MailOperationCollectionSupport.aj │ │ │ │ ├── MailPluginRuntimeDescriptor.java │ │ │ │ ├── MailSendExternalResourceAnalyzer.java │ │ │ │ ├── MailSendMetricsGenerator.java │ │ │ │ └── MessageSendOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-javax-mail.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── mail │ │ │ └── mail.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── mail │ │ ├── JavaMailSenderOperationCollectionAspectTest.java │ │ ├── MailMetricsGeneratorTest.java │ │ ├── MailResourceAnalyzerTest.java │ │ └── MessageSendOperationCollectionAspectTest.java ├── mongodb │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── mongodb │ │ │ │ ├── AbstractMongoDBExternalResourceAnalyzer.java │ │ │ │ ├── MongoArgumentUtils.java │ │ │ │ ├── MongoCollectionOperationCollectionAspect.aj │ │ │ │ ├── MongoCursorOperationCollectionAspect.aj │ │ │ │ ├── MongoDBCollectionExternalResourceAnalyzer.java │ │ │ │ ├── MongoDBOperationExternalResourceAnalyzer.java │ │ │ │ ├── MongoDBPluginRuntimeDescriptor.java │ │ │ │ └── MongoDbOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-mongodb.xml │ │ │ ├── com │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── mongodb │ │ │ │ ├── mongo_collection_operation.ftl │ │ │ │ ├── mongo_cursor_operation.ftl │ │ │ │ └── mongo_db_operation.ftl │ │ │ ├── mongodb-collection-delete.png │ │ │ ├── mongodb-collection-getall.png │ │ │ └── mongodb-collection-insert.png │ │ └── test │ │ ├── java │ │ └── com │ │ │ ├── mongodb │ │ │ └── DBCollectionDummy.java │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── mongodb │ │ │ ├── AbstractMongoDBAnalyzerTest.java │ │ │ ├── DBCursorDummy.java │ │ │ ├── DBDummy.java │ │ │ ├── MongoArgumentUtilsTest.java │ │ │ ├── MongoCollectionOperationCollectionAspectTest.java │ │ │ ├── MongoCursorOperationCollectionAspectTest.java │ │ │ ├── MongoDBCollectionOperationAnalyzerTest.java │ │ │ ├── MongoDBOperationAnalyzerTest.java │ │ │ ├── MongoDbOperationCollectionAspectTest.java │ │ │ └── OperationFTLTest.java │ │ └── resources │ │ └── META-INF │ │ └── test-app-context.xml ├── pom.xml ├── portlet │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── portlet │ │ │ │ ├── ActionOperationCollectionAspect.aj │ │ │ │ ├── EventOperationCollectionAspect.aj │ │ │ │ ├── GenericOperationCollectionAspect.aj │ │ │ │ ├── OperationCollectionTypes.java │ │ │ │ ├── PortletEndPointAnalyzer.java │ │ │ │ ├── PortletPluginRuntimeDescriptor.java │ │ │ │ ├── RenderOperationCollectionAspect.aj │ │ │ │ └── ResourceOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-portlet.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── portlet │ │ │ ├── action.ftl │ │ │ ├── event.ftl │ │ │ ├── render.ftl │ │ │ └── resource.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── portlet │ │ │ ├── ActionOperationCollectionAspectTest.java │ │ │ ├── ExamplePortlet.java │ │ │ ├── ExamplePortletTester.java │ │ │ ├── GenericOperationCollectionTestSupport.java │ │ │ └── RenderOperationCollectionAspectTest.java │ │ └── webapp │ │ ├── WEB-INF │ │ ├── portlet.xml │ │ └── web.xml │ │ ├── ask.jsp │ │ ├── edit.jsp │ │ └── help.jsp ├── quartz │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── quartz │ │ │ │ └── scheduler │ │ │ │ ├── AbstractQuartzValueAccessor.java │ │ │ │ ├── QuartzJobDetailValueAccessor.java │ │ │ │ ├── QuartzJobExecutionContextValueAccessor.java │ │ │ │ ├── QuartzKeyValueAccessor.java │ │ │ │ ├── QuartzPluginRuntimeDescriptor.java │ │ │ │ ├── QuartzSchedulerDefinitions.java │ │ │ │ ├── QuartzSchedulerEndPointAnalyzer.java │ │ │ │ ├── QuartzSchedulerOperationCollectionAspect.aj │ │ │ │ ├── QuartzTraceSourceAnalyzer.java │ │ │ │ └── QuartzTriggerValueAccessor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-quartz-scheduler.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── quartz │ │ │ └── scheduler │ │ │ └── quartz-scheduler.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── quartz │ │ └── scheduler │ │ ├── QuartzSchedulerMockJob.java │ │ ├── QuartzSchedulerOperationCollectionAspectTest.java │ │ └── QuartzTraceSourceAnalyzerTest.java ├── rabbitmq-client │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── rabbitmqClient │ │ │ │ ├── AbstractRabbitMQCollectionAspect.java │ │ │ │ ├── AbstractRabbitMQResourceAnalyzer.java │ │ │ │ ├── AbstractRabbitMetricsGenerator.java │ │ │ │ ├── RabbitMQConsumerCollectionAspect.aj │ │ │ │ ├── RabbitMQConsumerMetricsGenerator.java │ │ │ │ ├── RabbitMQConsumerResourceAnalyzer.java │ │ │ │ ├── RabbitMQEndPointAnalyzer.java │ │ │ │ ├── RabbitMQPluginRuntimeDescriptor.java │ │ │ │ ├── RabbitMQPublishCollectionAspect.aj │ │ │ │ ├── RabbitMQPublishMetricsGenerator.java │ │ │ │ ├── RabbitMQPublishResourceAnalyzer.java │ │ │ │ ├── RabbitPluginOperationType.java │ │ │ │ └── RabbitTraceSourceAnalyzer.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-rabbitmq-client.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── rabbitmqClient │ │ │ └── rabbitmqclient.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── rabbitmqClient │ │ ├── AbstractRabbitMQCollectionAspectTestSupport.java │ │ ├── AbstractRabbitMQMetricsGeneratorTest.java │ │ ├── AbstractRabbitMQResourceAnalyzerTest.java │ │ ├── RabbitMQConsumerCollectionAspectTest.java │ │ ├── RabbitMQConsumerMetricsGeneratorTest.java │ │ ├── RabbitMQConsumerResourceAnalyzerTest.java │ │ ├── RabbitMQPublishCollectionAspectTest.java │ │ ├── RabbitMQPublishMetricsGeneratorTest.java │ │ ├── RabbitMQPublishResourceAnalyzerTest.java │ │ └── RabbitTraceSourceAnalyzerTest.java ├── redis │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── redis │ │ │ │ ├── RedisClientAspect.aj │ │ │ │ ├── RedisCollectionOperationAspect.aj │ │ │ │ ├── RedisConnectionFactoryOperationCollectionAspect.aj │ │ │ │ ├── RedisExternalResourceAnalyzer.java │ │ │ │ ├── RedisMapOperationCollectionAspect.aj │ │ │ │ ├── RedisPluginRuntimeDescriptor.java │ │ │ │ └── util │ │ │ │ └── RedisUtil.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-redis.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── redis │ │ │ ├── redisClientMethod.ftl │ │ │ ├── redisCollection.ftl │ │ │ └── redisMap.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── redis │ │ ├── DummyAbstractRedisCollection.java │ │ ├── DummyJedisCommands.java │ │ ├── DummyRedisMapImpl.java │ │ ├── RedisClientAspectTest.java │ │ ├── RedisCollectionOperationAspectTest.java │ │ ├── RedisExternalResourceAnalyzerTest.java │ │ └── RedisMapOperationCollectionAspectTest.java ├── rmi │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── rmi │ │ │ │ ├── RmiDefinitions.java │ │ │ │ ├── RmiListOperationCollectionAspect.aj │ │ │ │ ├── RmiOperationCollectionAspect.aj │ │ │ │ └── RmiPluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-rmi.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── rmi │ │ │ ├── rmi-action.ftl │ │ │ └── rmi-list.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── rmi │ │ ├── RmiListOperationCollectionAspectTest.java │ │ ├── RmiOperationCollectionAspectTest.java │ │ ├── RmiOperationCollectionAspectTestSupport.java │ │ └── TestRegistry.java ├── run-exec │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── runexec │ │ │ │ ├── DefaultRunnableResolver.java │ │ │ │ ├── ExecuteMethodCollectionAspect.aj │ │ │ │ ├── ExecutorExecuteCollectionAspect.aj │ │ │ │ ├── ExecutorServiceSubmitCollectionAspect.aj │ │ │ │ ├── RunExecDefinitions.java │ │ │ │ ├── RunExecPluginRuntimeDescriptor.java │ │ │ │ ├── RunnableResolver.java │ │ │ │ ├── RunnableWrapper.java │ │ │ │ ├── ScheduledExecutorServiceCollectionAspect.aj │ │ │ │ ├── SpringAsyncTaskExecutorCollectionAspect.aj │ │ │ │ ├── ThreadStartCollectionAspect.aj │ │ │ │ └── TimerTaskScheduleCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-run-exec.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── runexec │ │ │ ├── exec-runnable.ftl │ │ │ └── run-runnable.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── runexec │ │ ├── ExecutionCollectionAspectTestSupport.java │ │ ├── ExecutorExecuteCollectionAspectTest.java │ │ ├── ExecutorServiceSubmitCollectionAspectTest.java │ │ ├── ExposedRunExecPluginSpringBeanTest.java │ │ ├── ScheduledExecutorServiceCollectionAspectTest.java │ │ ├── SignallingRunnable.java │ │ ├── SpringAsyncTaskExecutorCollectionAspectTest.java │ │ ├── TestExecutor.java │ │ ├── TestRunnable.java │ │ ├── ThreadStartCollectionAspectTest.java │ │ └── TimerTaskScheduleCollectionAspectTest.java ├── servlet │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── servlet │ │ │ │ ├── FilterOperationCollectionAspect.aj │ │ │ │ ├── HttpStatusTraceErrorAnalyzer.java │ │ │ │ ├── HttpTraceSourceAnalyzer.java │ │ │ │ ├── LifecycleEndPointAnalyzer.java │ │ │ │ ├── RequestDispatchEndPointAnalyzer.java │ │ │ │ ├── RequestResponseSizeMetricsGenerator.java │ │ │ │ ├── ServletContextListenerOperationDestroyedCollectionAspect.aj │ │ │ │ ├── ServletContextListenerOperationInitializedCollectionAspect.aj │ │ │ │ ├── ServletEndPointAnalyzer.java │ │ │ │ └── ServletPluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-servlet.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── servlet │ │ │ ├── http.ftl │ │ │ ├── request-dispatch.ftl │ │ │ ├── servlet-filter.ftl │ │ │ └── servlet-listener.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── servlet │ │ ├── DummyFilter.java │ │ ├── ExposedServletPluginSpringBeanTest.java │ │ ├── FilterOperationCollectionAspectTest.java │ │ ├── HttpStatusTraceErrorAnalyzerTest.java │ │ ├── HttpTraceSourceAnalyzerTest.java │ │ ├── LifecycleEndPointAnalyzerTest.java │ │ ├── RequestResponseSizeMetricsGeneratorTest.java │ │ └── ServletEndPointAnalyzerTest.java ├── socket │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── socket │ │ │ │ ├── HttpURLConnectionOperationCollectionAspect.aj │ │ │ │ ├── ServerSocketChannelAcceptCollectionAspect.aj │ │ │ │ ├── SocketAcceptCollectionAspect.aj │ │ │ │ ├── SocketAcceptCollectionAspectSupport.aj │ │ │ │ ├── SocketAcceptOperationCollector.java │ │ │ │ ├── SocketChannelConnectCollectionAspect.aj │ │ │ │ ├── SocketCollectOperationContext.java │ │ │ │ ├── SocketConnectCollectionAspect.aj │ │ │ │ ├── SocketConnectCollectionAspectSupport.aj │ │ │ │ ├── SocketDefinitions.java │ │ │ │ ├── SocketExternalResourceAnalyzer.java │ │ │ │ ├── SocketOperationCollectionAspectSupport.aj │ │ │ │ └── SocketPluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── aop.xml │ │ │ └── insight-plugin-socket.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── socket │ │ │ └── socket.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── socket │ │ ├── HttpURLConnectionOperationCollectionAspectTest.java │ │ ├── ServerSocketChannelAcceptCollectionAspectTest.java │ │ ├── SocketAcceptCollectionAspectTest.java │ │ ├── SocketAcceptCollectionAspectTestSupport.java │ │ ├── SocketAcceptorHelper.java │ │ ├── SocketChannelConnectCollectionAspectTest.java │ │ ├── SocketConnectCollectionAspectTest.java │ │ ├── SocketConnectCollectionAspectTestSupport.java │ │ ├── SocketExternalResourceAnalyzerTest.java │ │ └── SocketOperationCollectionAspectTestSupport.java ├── spring-batch │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── springbatch │ │ │ │ ├── FlowExecutorCollectionAspect.aj │ │ │ │ ├── FlowOperationCollectionAspect.aj │ │ │ │ ├── JobLauncherCollectionAspect.aj │ │ │ │ ├── JobOperationCollectionAspect.aj │ │ │ │ ├── SpringBatchDefinitions.java │ │ │ │ ├── SpringBatchOperationCollectionAspect.aj │ │ │ │ ├── SpringBatchPluginRuntimeDescriptor.java │ │ │ │ ├── StepOperationCollectionAspect.aj │ │ │ │ └── TaskletCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-spring-batch.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── springbatch │ │ │ └── springbatch.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── springbatch │ │ │ ├── ExposedSpringBatchPluginSpringBeanTest.java │ │ │ ├── FlowExecutorCollectionAspectTest.java │ │ │ ├── FlowOperationCollectionAspectTest.java │ │ │ ├── JobLauncherCollectionAspectTest.java │ │ │ ├── JobOperationCollectionAspectTest.java │ │ │ ├── SpringBatchOperationCollectionAspectTestSupport.java │ │ │ ├── StepOperationCollectionAspectTest.java │ │ │ ├── TaskletCollectionAspectTest.java │ │ │ ├── TestDummyJob.java │ │ │ ├── TestDummyJobRepository.java │ │ │ └── TestDummyOperationCollector.java │ │ └── resources │ │ └── META-INF │ │ └── jobContext.xml ├── spring-cloud │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── springcloud │ │ │ │ ├── SpringCloudOperationCollector.java │ │ │ │ ├── SpringCloudOperationSupport.java │ │ │ │ ├── SpringCloudPluginRuntimeDescriptor.java │ │ │ │ └── hystrix │ │ │ │ ├── HystrixCommandAspect.aj │ │ │ │ └── HystrixCommandErrorAnalyzer.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-spring-cloud │ │ │ └── com.springsource.insight.plugin.springcloud │ │ │ └── hystrix-command.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── springcloud │ │ └── hystrix │ │ ├── HystrixCommandAspectTest.java │ │ └── HystrixCommandErrorAnalyzerTest.java ├── spring-core │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── springcore │ │ │ │ ├── ApplicationListenerMethodOperationCollectionAspect.aj │ │ │ │ ├── ClassPathScanOperationCollectionAspect.aj │ │ │ │ ├── ComponentMethodOperationCollectionAspect.aj │ │ │ │ ├── EventPublisingOperationCollectionAspect.aj │ │ │ │ ├── InitializingBeanOperationCollectionAspect.aj │ │ │ │ ├── RepositoryMethodOperationCollectionAspect.aj │ │ │ │ ├── ServiceMethodOperationCollectionAspect.aj │ │ │ │ ├── SpringCoreOperationCollectionAspect.aj │ │ │ │ ├── SpringCorePluginRuntimeDescriptor.java │ │ │ │ ├── SpringEventReferenceCollectionAspect.aj │ │ │ │ ├── SpringLifecycleMethodOperationCollectionAspect.aj │ │ │ │ └── StereotypedSpringBeanMethodOperationCollectionAspectSupport.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-spring-core.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── springcore │ │ │ ├── spring_app_listener.ftl │ │ │ ├── spring_bean_lifecycle.ftl │ │ │ ├── spring_classpath_scan.ftl │ │ │ └── spring_event_publish.ftl │ │ └── test │ │ ├── java │ │ ├── com │ │ │ ├── foo │ │ │ │ └── example │ │ │ │ │ ├── AbstractBean.java │ │ │ │ │ ├── ExampleComponent.java │ │ │ │ │ ├── ExampleRepository.java │ │ │ │ │ └── ExampleService.java │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── springcore │ │ │ │ ├── ApplicationListenerMethodOperationCollectionAspectTest.java │ │ │ │ ├── ClassPathScanOperationCollectionAspectTest.java │ │ │ │ ├── ComponentMethodOperationCollectionAspectTest.java │ │ │ │ ├── EventPublisingOperationCollectionAspectTest.java │ │ │ │ ├── ExposedSpringCorePluginSpringBeanTest.java │ │ │ │ ├── InitializingBeanOperationCollectionAspectTest.java │ │ │ │ ├── RepositoryMethodOperationCollectionAspectTest.java │ │ │ │ ├── ServiceMethodOperationCollectionAspectTest.java │ │ │ │ ├── SpringEventReferenceCollectionAspectTest.java │ │ │ │ ├── StereotypeOperationCollectionAspectTestSupport.java │ │ │ │ └── beans │ │ │ │ ├── Fubar.java │ │ │ │ ├── InsightComponent.java │ │ │ │ ├── InsightRepository.java │ │ │ │ └── InsightService.java │ │ └── il │ │ │ └── co │ │ │ └── springsource │ │ │ └── insight │ │ │ ├── MyApplicationEventMulticaster.java │ │ │ ├── MyApplicationEventPublisher.java │ │ │ ├── MyApplicationListener.java │ │ │ ├── MyApplicationListenerAndRepository.java │ │ │ ├── MyEvent.java │ │ │ ├── MyEventHolder.java │ │ │ └── MyEventSource.java │ │ └── resources │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── springcore │ │ └── test-class-path-scan-operation.xml ├── spring-data │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── springdata │ │ │ │ ├── RepositoryMethodEndPointAnalyzer.java │ │ │ │ ├── RepositoryMethodOperationCollectionAspect.aj │ │ │ │ ├── SpringDataDefinitions.java │ │ │ │ └── SpringDataPluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-spring-data.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── springdata │ │ │ └── spring-data-repository.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── springdata │ │ │ ├── JpaRepositoryCollectionAspectTest.java │ │ │ ├── RepositoryMethodOperationCollectionAspectTestSupport.java │ │ │ ├── dao │ │ │ └── TestEntityRepository.java │ │ │ └── model │ │ │ └── TestEntity.java │ │ └── resources │ │ ├── META-INF │ │ ├── jpaTestContext.properties │ │ ├── jpaTestContext.xml │ │ └── persistence.xml │ │ └── db │ │ └── hsqldb │ │ └── dbInit.sql ├── spring-integration │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── integration │ │ │ │ ├── AbstractIntegrationOperationCollectionAspect.aj │ │ │ │ ├── IntegrationEndPointAnalyzer.java │ │ │ │ ├── IntegrationOperationCollectionAspect.aj │ │ │ │ ├── IntegrationPluginRuntimeDescriptor.java │ │ │ │ ├── MessageListenerProps.java │ │ │ │ ├── SpringIntegrationDefinitions.java │ │ │ │ ├── amqp │ │ │ │ ├── AmqpInboundChannelAdapterMessageListenerProps.aj │ │ │ │ └── MessageListenerOperationCollectionAspect.aj │ │ │ │ ├── gateway │ │ │ │ ├── GatewayMethodInboundMessageMapperAspect.aj │ │ │ │ ├── GatewayOperationCollectionAspect.aj │ │ │ │ ├── HasMethod.java │ │ │ │ ├── HasMethodAspect.aj │ │ │ │ ├── HasRequestMapper.java │ │ │ │ ├── HasRequestMapperAspect.aj │ │ │ │ └── InboundMessageMapperAspect.aj │ │ │ │ └── tcp │ │ │ │ ├── TcpConnectionExternalResourceAnalyzer.java │ │ │ │ ├── TcpConnectionOperationCollectionAspect.aj │ │ │ │ └── TcpConnectionOperationCollector.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-spring-integration.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── integration │ │ │ ├── integration_adapter.ftl │ │ │ ├── integration_operation.ftl │ │ │ └── tcp │ │ │ └── integration_tcpconn.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── integration │ │ │ ├── ExposedIntegrationPluginSpringBeanTest.java │ │ │ ├── IntegrationEndPointAnalyzerTest.java │ │ │ ├── IntegrationOperationCollectionAspectTest.java │ │ │ ├── IntegrationOperationViewTest.java │ │ │ ├── gateway │ │ │ ├── GatewayMethodInboundMessageMapperAspectTest.java │ │ │ └── InboundMessageMapperAspectTest.java │ │ │ └── tcp │ │ │ ├── TcpConnectionOperationCollectionAspectTest.java │ │ │ └── TcpTestConnectionFactory.java │ │ └── resources │ │ └── META-INF │ │ └── test-app-context.xml ├── spring-integration2 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── integration │ │ │ │ ├── AbstractIntegrationOperationCollectionAspect.aj │ │ │ │ ├── IntegrationEndPointAnalyzer.java │ │ │ │ ├── IntegrationOperationCollectionAspect.aj │ │ │ │ ├── IntegrationPluginRuntimeDescriptor.java │ │ │ │ ├── MessageListenerProps.java │ │ │ │ ├── SpringIntegrationDefinitions.java │ │ │ │ ├── amqp │ │ │ │ ├── AmqpInboundChannelAdapterMessageListenerProps.aj │ │ │ │ └── MessageListenerOperationCollectionAspect.aj │ │ │ │ ├── gateway │ │ │ │ ├── GatewayMethodInboundMessageMapperAspect.aj │ │ │ │ ├── GatewayOperationCollectionAspect.aj │ │ │ │ ├── HasMethod.java │ │ │ │ ├── HasMethodAspect.aj │ │ │ │ ├── HasRequestMapper.java │ │ │ │ ├── HasRequestMapperAspect.aj │ │ │ │ └── InboundMessageMapperAspect.aj │ │ │ │ └── tcp │ │ │ │ ├── TcpConnectionExternalResourceAnalyzer.java │ │ │ │ ├── TcpConnectionOperationCollectionAspect.aj │ │ │ │ └── TcpConnectionOperationCollector.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-spring-integration.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── integration │ │ │ ├── integration_adapter.ftl │ │ │ ├── integration_operation.ftl │ │ │ └── tcp │ │ │ └── integration_tcpconn.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── integration │ │ │ ├── ExposedIntegrationPluginSpringBeanTest.java │ │ │ ├── IntegrationEndPointAnalyzerTest.java │ │ │ ├── IntegrationOperationCollectionAspectTest.java │ │ │ ├── IntegrationOperationViewTest.java │ │ │ ├── gateway │ │ │ ├── GatewayMethodInboundMessageMapperAspectTest.java │ │ │ └── InboundMessageMapperAspectTest.java │ │ │ └── tcp │ │ │ ├── TcpConnectionOperationCollectionAspectTest.java │ │ │ └── TcpTestConnectionFactory.java │ │ └── resources │ │ └── META-INF │ │ └── test-app-context.xml ├── spring-neo4j │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── neo4j │ │ │ │ ├── FindOperationCollectionAspect.aj │ │ │ │ ├── LookupOperationCollectionAspect.aj │ │ │ │ ├── Neo4JExternalResourceAnalyzer.java │ │ │ │ ├── Neo4JFindExternalResourceAnalyzer.java │ │ │ │ ├── Neo4JLookupExternalResourceAnalyzer.java │ │ │ │ ├── Neo4JOperationCollectionSupport.java │ │ │ │ ├── Neo4JPluginRuntimeDescriptor.java │ │ │ │ ├── Neo4JQueryExternalResourceAnalyzer.java │ │ │ │ ├── Neo4JSaveExternalResourceAnalyzer.java │ │ │ │ ├── Neo4JTraverseExternalResourceAnalyzer.java │ │ │ │ ├── OperationCollectionTypes.java │ │ │ │ ├── QueryOperationCollectionAspect.aj │ │ │ │ ├── SaveOperationCollectionAspect.aj │ │ │ │ └── TraverseOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-spring-neo4j.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── neo4j │ │ │ ├── find.ftl │ │ │ ├── lookup.ftl │ │ │ ├── query.ftl │ │ │ ├── save.ftl │ │ │ └── traverse.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── neo4j │ │ │ ├── AbstractNeo4jCollectionAspectTestSupport.java │ │ │ ├── FindOperationCollectionAspectTest.java │ │ │ ├── LookupOperationCollectionAspectTest.java │ │ │ ├── Movie.java │ │ │ ├── OperationCollectionAspectTests.java │ │ │ ├── QueryOperationCollectionAspectTest.java │ │ │ └── TraverseOperationCollectionAspectTest.java │ │ └── resources │ │ └── META-INF │ │ └── spring-neo4j-plugin-test-context.xml ├── spring-security │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── spring │ │ │ │ └── security │ │ │ │ ├── AbstractAuthenticationCollectionAspect.aj │ │ │ │ ├── AuthenticationManagerCollectionAspect.aj │ │ │ │ ├── AuthenticationProviderCollectionAspect.aj │ │ │ │ ├── AuthenticationProviderOperationCollector.java │ │ │ │ ├── ObscuringOperationCollector.java │ │ │ │ ├── SpringSecurityDefinitions.java │ │ │ │ ├── SpringSecurityPluginRuntimeDescriptor.java │ │ │ │ ├── UserDetailsManagerCollectionAspect.aj │ │ │ │ └── UserDetailsOperationCollector.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-spring-security.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── spring │ │ │ └── security │ │ │ └── spring-authenticate.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── spring │ │ │ └── security │ │ │ ├── AuthenticationCollectionAspectTestSupport.java │ │ │ ├── AuthenticationManagerCollectionAspectTest.java │ │ │ ├── AuthenticationProviderCollectionAspectTest.java │ │ │ ├── AuthenticationProviderCollectionAspectTestProvider.java │ │ │ ├── AuthenticationTestManager.java │ │ │ ├── SpringSecurityCollectionTestSupport.java │ │ │ ├── TestingUserDetailsManager.java │ │ │ └── UserDetailsManagerCollectionAspectTest.java │ │ └── resources │ │ └── META-INF │ │ └── aop.xml ├── spring-tx │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── springtx │ │ │ │ ├── SpringTXPluginRuntimeDescriptor.java │ │ │ │ ├── TransactionOperationCollectionAspect.aj │ │ │ │ ├── TransactionOperationFinalizer.java │ │ │ │ ├── TransactionOperationStatus.java │ │ │ │ └── TransactionPointcuts.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-springtx.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── springtx │ │ │ └── transaction.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── springtx │ │ ├── TransactionOperationCollectionAspectTest.java │ │ └── TransactionOperationFinalizerTest.java ├── spring-web │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── springweb │ │ │ │ ├── AbstractSpringWebAspectSupport.aj │ │ │ │ ├── AbstractSpringWebEndPointAnalyzer.java │ │ │ │ ├── SpringWebHelpers.java │ │ │ │ ├── SpringWebPluginRuntimeDescriptor.java │ │ │ │ ├── SpringWebPointcuts.aj │ │ │ │ ├── binder │ │ │ │ ├── InitBinderOperationCollectionAspect.aj │ │ │ │ └── InitBinderOperationFinalizer.java │ │ │ │ ├── controller │ │ │ │ ├── AbstractControllerOperationCollectionAspect.aj │ │ │ │ ├── ControllerEndPointAnalyzer.java │ │ │ │ ├── ControllerOperationCollectionAspect.aj │ │ │ │ ├── ControllerOperationCollector.java │ │ │ │ └── LegacyControllerOperationCollectionAspect.aj │ │ │ │ ├── http │ │ │ │ ├── ClientHttpRequestCollectionOperationAspect.aj │ │ │ │ ├── ClientHttpRequestExternalResourceAnalyzer.java │ │ │ │ ├── ClientHttpRequestOperationCollector.java │ │ │ │ ├── ClientHttpRequestTraceErrorAnalyzer.java │ │ │ │ └── SimpleClientHttpRequestFactoryCollectionAspect.aj │ │ │ │ ├── modelattribute │ │ │ │ ├── ModelAttributeOperationCollectionAspect.aj │ │ │ │ └── ModelAttributeOperationCollector.java │ │ │ │ ├── remoting │ │ │ │ ├── HttpInvokerRequestExecutorExternalResourceAnalyzer.java │ │ │ │ ├── HttpInvokerRequestExecutorOperationCollectionAspect.aj │ │ │ │ ├── HttpInvokerRequestExecutorOperationCollector.java │ │ │ │ ├── HttpInvokerRequestExecutorTraceErrorAnalyzer.java │ │ │ │ └── SimpleHttpInvokerRequestExecutorAspect.aj │ │ │ │ ├── request │ │ │ │ └── WebRequestOperationCollectionAspect.aj │ │ │ │ ├── rest │ │ │ │ ├── RestDeleteOperationCollectionAspect.aj │ │ │ │ ├── RestExchangeOperationCollectionAspect.aj │ │ │ │ ├── RestExecuteOperationCollectionAspect.aj │ │ │ │ ├── RestGetOperationCollectionAspect.aj │ │ │ │ ├── RestHeadOperationCollectionAspect.aj │ │ │ │ ├── RestIndirectOperationCollectionSupport.aj │ │ │ │ ├── RestOperationCollectionSupport.aj │ │ │ │ ├── RestOperationCollector.java │ │ │ │ ├── RestOperationExternalResourceAnalyzer.java │ │ │ │ ├── RestOptionsOperationCollectionAspect.aj │ │ │ │ ├── RestPostOperationCollectionAspect.aj │ │ │ │ └── RestPutOperationCollectionAspect.aj │ │ │ │ ├── validation │ │ │ │ ├── ValidationErrorsMetricsGenerator.java │ │ │ │ ├── ValidationJoinPointFinalizer.java │ │ │ │ └── ValidationOperationCollectionAspect.aj │ │ │ │ └── view │ │ │ │ ├── ViewUtils.java │ │ │ │ ├── render │ │ │ │ └── ViewRenderOperationCollectionAspect.aj │ │ │ │ └── resolver │ │ │ │ ├── ViewResolverMetricCollector.java │ │ │ │ └── ViewResolverOperationCollectionAspect.aj │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-springweb.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── springweb │ │ │ ├── binder │ │ │ └── init_binder.ftl │ │ │ ├── controller │ │ │ └── controller_method.ftl │ │ │ ├── http │ │ │ └── spring_client_reqhttp.ftl │ │ │ ├── modelattribute │ │ │ └── model_attribute.ftl │ │ │ ├── remoting │ │ │ └── http_invoker.ftl │ │ │ ├── request │ │ │ └── web_request.ftl │ │ │ ├── rest │ │ │ └── spring_rest_template.ftl │ │ │ ├── validation │ │ │ └── controller_validator.ftl │ │ │ └── view │ │ │ ├── render │ │ │ └── view_render.ftl │ │ │ └── resolver │ │ │ └── view_resolver.ftl │ │ └── test │ │ └── java │ │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── springweb │ │ ├── ExposedSpringWebPluginSpringBeanTest.java │ │ ├── binder │ │ └── InitBinderOperationCollectionAspectTest.java │ │ ├── controller │ │ ├── AbstractControllerOperationCollectionAspectTestSupport.java │ │ ├── ControllerEndPointAnalyzerTest.java │ │ ├── ControllerOperationCollectionAspectTest.java │ │ └── LegacyControllerOperationCollectionAspectTest.java │ │ ├── http │ │ ├── ClientHttpRequestCollectionOperationAspectTest.java │ │ └── SimpleClientHttpRequestFactoryCollectionAspectTest.java │ │ ├── modelattribute │ │ └── ModelAttributeOperationCollectionAspectTest.java │ │ ├── remoting │ │ ├── HttpInvokerRequestExecutorOperationCollectionAspectTest.java │ │ ├── HttpInvokerRequestOperationCollectionTestSupport.java │ │ └── SimpleHttpInvokerRequestExecutorAspectTest.java │ │ ├── request │ │ └── WebRequestOperationCollectionAspectTest.java │ │ ├── rest │ │ ├── RestDeleteOperationCollectionAspectTest.java │ │ ├── RestExchangeOperationCollectionAspectTest.java │ │ ├── RestExecuteOperationCollectionAspectTest.java │ │ ├── RestGetOperationCollectionAspectTest.java │ │ ├── RestHeadOperationCollectionAspectTest.java │ │ ├── RestOperationCollectionTestSupport.java │ │ ├── RestOptionsOperationCollectionAspectTest.java │ │ ├── RestPostOperationCollectionAspectTest.java │ │ └── RestPutOperationCollectionAspectTest.java │ │ ├── validation │ │ ├── ValidationErrorsMetricsGeneratorTest.java │ │ └── ValidationOperationCollectionAspectTest.java │ │ └── view │ │ ├── render │ │ └── ViewRenderOperationCollectionAspectTest.java │ │ └── resolver │ │ └── ViewResolverOperationCollectionAspectTest.java ├── spring-webflow │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── webflow │ │ │ │ ├── ActionOperationCollectionAspect.aj │ │ │ │ ├── OperationCollectionTypes.java │ │ │ │ ├── OperationCollectionUtils.aj │ │ │ │ ├── StartOperationCollectionAspect.aj │ │ │ │ ├── StateOperationCollectionAspect.aj │ │ │ │ ├── TransitionOperationCollectionAspect.aj │ │ │ │ └── WebflowPluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-spring-webflow.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── webflow │ │ │ ├── action.ftl │ │ │ ├── start.ftl │ │ │ ├── state.ftl │ │ │ └── transition.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── webflow │ │ │ ├── ActionOperationCollectionAspectTest.java │ │ │ ├── StartOperationCollectionAspectTest.java │ │ │ ├── StateOperationCollectionAspectTest.java │ │ │ ├── TransitionOperationCollectionAspectTest.java │ │ │ └── WebFlowExecutionTest.java │ │ └── resources │ │ └── webflow-test.xml ├── struts2 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springsource │ │ │ │ └── insight │ │ │ │ └── plugin │ │ │ │ └── struts2 │ │ │ │ ├── ActionOperationCollectionAspect.aj │ │ │ │ ├── InterceptOperationCollectionAspect.aj │ │ │ │ ├── OperationCollectionTypes.java │ │ │ │ ├── ResultOperationCollectionAspect.aj │ │ │ │ ├── StartOperationCollectionAspect.aj │ │ │ │ └── Struts2PluginRuntimeDescriptor.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── insight-plugin-struts2.xml │ │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── struts2 │ │ │ ├── action.ftl │ │ │ ├── intercept.ftl │ │ │ ├── result.ftl │ │ │ └── start.ftl │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── plugin │ │ │ └── struts2 │ │ │ ├── ActionOperationCollectionAspectTest.java │ │ │ ├── InterceptOperationCollectionAspectTest.java │ │ │ ├── ResultOperationCollectionAspectTest.java │ │ │ ├── StartOperationCollectionAspectTest.java │ │ │ ├── Struts2Tests.java │ │ │ └── test │ │ │ ├── action │ │ │ ├── RegisterAction.java │ │ │ └── RegisterValidationAction.java │ │ │ └── model │ │ │ └── Person.java │ │ └── resources │ │ └── struts.xml └── tomcat │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── README.textile │ ├── build.xml │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── springsource │ │ └── insight │ │ └── plugin │ │ └── tomcat │ │ └── jsp │ │ ├── JspCompilerOperationCollectionAspect.aj │ │ └── TomcatPluginRuntimeDescriptor.java │ └── resources │ ├── META-INF │ └── insight-plugin-tomcat.xml │ └── com │ └── springsource │ └── insight │ └── plugin │ └── tomcat │ └── jsp │ └── jsp-compiler.ftl ├── core └── pom.xml ├── parent └── pom.xml ├── pom.xml └── samples ├── payme-insight-plugin ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── myorg │ │ │ └── insight │ │ │ └── myplugin │ │ │ └── CashMoneyOperationCollectionAspect.aj │ └── resources │ │ ├── META-INF │ │ └── insight-plugin-myplugin.xml │ │ └── org │ │ └── myorg │ │ └── insight │ │ └── myplugin │ │ └── cash_money_operation.ftl │ └── test │ ├── java │ └── org │ │ └── myorg │ │ └── insight │ │ └── myplugin │ │ ├── CashMoneyOperationCollectionAspectTest.java │ │ └── CashMoneyOperationViewTest.java │ └── resources │ └── META-INF │ └── test-app-context.xml ├── payme-webapp ├── .classpath ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.wst.jsdt.ui.superType.name ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── springsource │ │ │ └── insight │ │ │ └── samples │ │ │ └── payme │ │ │ ├── FakeAccount.java │ │ │ └── PaymentController.java │ ├── resources │ │ └── log4j.properties │ └── webapp │ │ └── WEB-INF │ │ ├── jsp │ │ └── gotpaid.jsp │ │ ├── payme-servlet.xml │ │ ├── spring │ │ └── applicationContext.xml │ │ └── web.xml │ └── test │ ├── java │ └── .gitignore │ └── resources │ └── log4j.xml └── pom.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/README.md -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/README.textile -------------------------------------------------------------------------------- /aslHeader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/aslHeader.txt -------------------------------------------------------------------------------- /collection-plugins/akka/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/.classpath -------------------------------------------------------------------------------- /collection-plugins/akka/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/.project -------------------------------------------------------------------------------- /collection-plugins/akka/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/akka/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/akka/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/akka/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/README.textile -------------------------------------------------------------------------------- /collection-plugins/akka/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/build.xml -------------------------------------------------------------------------------- /collection-plugins/akka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/pom.xml -------------------------------------------------------------------------------- /collection-plugins/akka/src/main/java/com/springsource/insight/plugin/akka/AkkaDefinitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/src/main/java/com/springsource/insight/plugin/akka/AkkaDefinitions.java -------------------------------------------------------------------------------- /collection-plugins/akka/src/main/java/com/springsource/insight/plugin/akka/actorref/ActorRefHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/src/main/java/com/springsource/insight/plugin/akka/actorref/ActorRefHelper.java -------------------------------------------------------------------------------- /collection-plugins/akka/src/main/resources/META-INF/insight-plugin-akka.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/src/main/resources/META-INF/insight-plugin-akka.xml -------------------------------------------------------------------------------- /collection-plugins/akka/src/main/resources/com/springsource/insight/plugin/akka/akka.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/akka/src/main/resources/com/springsource/insight/plugin/akka/akka.ftl -------------------------------------------------------------------------------- /collection-plugins/axon/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/.classpath -------------------------------------------------------------------------------- /collection-plugins/axon/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/.project -------------------------------------------------------------------------------- /collection-plugins/axon/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/axon/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/axon/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/axon/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/README.textile -------------------------------------------------------------------------------- /collection-plugins/axon/aslHeader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/aslHeader.txt -------------------------------------------------------------------------------- /collection-plugins/axon/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/pom.xml -------------------------------------------------------------------------------- /collection-plugins/axon/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/screenshot.png -------------------------------------------------------------------------------- /collection-plugins/axon/src/main/java/org/axonframework/insight/plugin/axon/Axon20OperationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/src/main/java/org/axonframework/insight/plugin/axon/Axon20OperationUtils.java -------------------------------------------------------------------------------- /collection-plugins/axon/src/main/java/org/axonframework/insight/plugin/axon/AxonOperationType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/src/main/java/org/axonframework/insight/plugin/axon/AxonOperationType.java -------------------------------------------------------------------------------- /collection-plugins/axon/src/main/java/org/axonframework/insight/plugin/axon/AxonVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/src/main/java/org/axonframework/insight/plugin/axon/AxonVersion.java -------------------------------------------------------------------------------- /collection-plugins/axon/src/main/resources/META-INF/insight-plugin-axon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/src/main/resources/META-INF/insight-plugin-axon.xml -------------------------------------------------------------------------------- /collection-plugins/axon/src/main/resources/org/axonframework/insight/plugin/axon/command_bus_dispatch.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/src/main/resources/org/axonframework/insight/plugin/axon/command_bus_dispatch.ftl -------------------------------------------------------------------------------- /collection-plugins/axon/src/main/resources/org/axonframework/insight/plugin/axon/event_bus_publish.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/src/main/resources/org/axonframework/insight/plugin/axon/event_bus_publish.ftl -------------------------------------------------------------------------------- /collection-plugins/axon/src/main/resources/org/axonframework/insight/plugin/axon/saga_operation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/src/main/resources/org/axonframework/insight/plugin/axon/saga_operation.ftl -------------------------------------------------------------------------------- /collection-plugins/axon/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/axon/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /collection-plugins/cassandra/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra/README.textile -------------------------------------------------------------------------------- /collection-plugins/cassandra/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra/pom.xml -------------------------------------------------------------------------------- /collection-plugins/cassandra/src/main/java/com/springsource/insight/plugin/cassandra/CQLFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra/src/main/java/com/springsource/insight/plugin/cassandra/CQLFormatter.java -------------------------------------------------------------------------------- /collection-plugins/cassandra/src/main/java/com/springsource/insight/plugin/cassandra/CQLToHtml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra/src/main/java/com/springsource/insight/plugin/cassandra/CQLToHtml.java -------------------------------------------------------------------------------- /collection-plugins/cassandra/src/main/java/com/springsource/insight/plugin/cassandra/WeakKeyHashMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra/src/main/java/com/springsource/insight/plugin/cassandra/WeakKeyHashMap.java -------------------------------------------------------------------------------- /collection-plugins/cassandra/src/main/resources/META-INF/insight-plugin-cassandra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra/src/main/resources/META-INF/insight-plugin-cassandra.xml -------------------------------------------------------------------------------- /collection-plugins/cassandra/src/main/resources/com/springsource/insight/plugin/cassandra/cassandra.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra/src/main/resources/com/springsource/insight/plugin/cassandra/cassandra.ftl -------------------------------------------------------------------------------- /collection-plugins/cassandra/src/test/java/com/springsource/insight/plugin/cassandra/CQLFormatterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra/src/test/java/com/springsource/insight/plugin/cassandra/CQLFormatterTest.java -------------------------------------------------------------------------------- /collection-plugins/cassandra/src/test/java/com/springsource/insight/plugin/cassandra/CQLToHtmlTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra/src/test/java/com/springsource/insight/plugin/cassandra/CQLToHtmlTest.java -------------------------------------------------------------------------------- /collection-plugins/cassandra/src/test/java/com/springsource/insight/plugin/cassandra/MockSession.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra/src/test/java/com/springsource/insight/plugin/cassandra/MockSession.java -------------------------------------------------------------------------------- /collection-plugins/cassandra12/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra12/README.textile -------------------------------------------------------------------------------- /collection-plugins/cassandra12/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra12/build.xml -------------------------------------------------------------------------------- /collection-plugins/cassandra12/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra12/pom.xml -------------------------------------------------------------------------------- /collection-plugins/cassandra12/src/main/resources/META-INF/insight-plugin-cassandra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra12/src/main/resources/META-INF/insight-plugin-cassandra.xml -------------------------------------------------------------------------------- /collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/conn.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/conn.ftl -------------------------------------------------------------------------------- /collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/cql.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/cql.ftl -------------------------------------------------------------------------------- /collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/get.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/get.ftl -------------------------------------------------------------------------------- /collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/remove.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/remove.ftl -------------------------------------------------------------------------------- /collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/system.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/system.ftl -------------------------------------------------------------------------------- /collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/update.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra12/src/main/resources/com/springsource/insight/plugin/cassandra/update.ftl -------------------------------------------------------------------------------- /collection-plugins/cassandra12/src/test/resources/cassandra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/cassandra12/src/test/resources/cassandra.yaml -------------------------------------------------------------------------------- /collection-plugins/eclipse-persistence/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/eclipse-persistence/.classpath -------------------------------------------------------------------------------- /collection-plugins/eclipse-persistence/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/eclipse-persistence/.project -------------------------------------------------------------------------------- /collection-plugins/eclipse-persistence/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/eclipse-persistence/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/eclipse-persistence/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/eclipse-persistence/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/eclipse-persistence/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/eclipse-persistence/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/eclipse-persistence/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/eclipse-persistence/README.textile -------------------------------------------------------------------------------- /collection-plugins/eclipse-persistence/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/eclipse-persistence/build.xml -------------------------------------------------------------------------------- /collection-plugins/eclipse-persistence/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/eclipse-persistence/pom.xml -------------------------------------------------------------------------------- /collection-plugins/ehcache/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/.classpath -------------------------------------------------------------------------------- /collection-plugins/ehcache/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/.project -------------------------------------------------------------------------------- /collection-plugins/ehcache/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/ehcache/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/ehcache/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/ehcache/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/README.textile -------------------------------------------------------------------------------- /collection-plugins/ehcache/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/build.xml -------------------------------------------------------------------------------- /collection-plugins/ehcache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/pom.xml -------------------------------------------------------------------------------- /collection-plugins/ehcache/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/ehcache/src/main/resources/META-INF/insight-plugin-ehcache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/src/main/resources/META-INF/insight-plugin-ehcache.xml -------------------------------------------------------------------------------- /collection-plugins/ehcache/src/main/resources/com/springsource/insight/plugin/ehcache/ehcache.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/src/main/resources/com/springsource/insight/plugin/ehcache/ehcache.ftl -------------------------------------------------------------------------------- /collection-plugins/ehcache/src/test/resources/ehcache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/src/test/resources/ehcache.xml -------------------------------------------------------------------------------- /collection-plugins/ehcache/src/test/resources/ehcache.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ehcache/src/test/resources/ehcache.xsd -------------------------------------------------------------------------------- /collection-plugins/ejb3/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ejb3/.classpath -------------------------------------------------------------------------------- /collection-plugins/ejb3/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ejb3/.project -------------------------------------------------------------------------------- /collection-plugins/ejb3/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ejb3/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/ejb3/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ejb3/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/ejb3/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ejb3/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/ejb3/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ejb3/README.textile -------------------------------------------------------------------------------- /collection-plugins/ejb3/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ejb3/build.xml -------------------------------------------------------------------------------- /collection-plugins/ejb3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ejb3/pom.xml -------------------------------------------------------------------------------- /collection-plugins/ejb3/src/main/resources/META-INF/insight-plugin-ejb3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ejb3/src/main/resources/META-INF/insight-plugin-ejb3.xml -------------------------------------------------------------------------------- /collection-plugins/ejb3/src/main/resources/com/springsource/insight/plugin/ejb3/ejb3.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ejb3/src/main/resources/com/springsource/insight/plugin/ejb3/ejb3.ftl -------------------------------------------------------------------------------- /collection-plugins/ejb3/src/test/java/com/springsource/insight/plugin/ejb3/ExampleEjb3LocalService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ejb3/src/test/java/com/springsource/insight/plugin/ejb3/ExampleEjb3LocalService.java -------------------------------------------------------------------------------- /collection-plugins/files-tracker/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/files-tracker/.classpath -------------------------------------------------------------------------------- /collection-plugins/files-tracker/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/files-tracker/.project -------------------------------------------------------------------------------- /collection-plugins/files-tracker/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/files-tracker/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/files-tracker/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/files-tracker/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/files-tracker/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/files-tracker/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/files-tracker/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/files-tracker/README.textile -------------------------------------------------------------------------------- /collection-plugins/files-tracker/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/files-tracker/build.xml -------------------------------------------------------------------------------- /collection-plugins/files-tracker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/files-tracker/pom.xml -------------------------------------------------------------------------------- /collection-plugins/files-tracker/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/files-tracker/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/files-tracker/src/main/resources/META-INF/insight-plugin-files-tracker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/files-tracker/src/main/resources/META-INF/insight-plugin-files-tracker.xml -------------------------------------------------------------------------------- /collection-plugins/files-tracker/src/test/resources/input-test-file.txt: -------------------------------------------------------------------------------- 1 | Dummy file used for input tests -------------------------------------------------------------------------------- /collection-plugins/gemfire-light/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire-light/.classpath -------------------------------------------------------------------------------- /collection-plugins/gemfire-light/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire-light/.project -------------------------------------------------------------------------------- /collection-plugins/gemfire-light/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire-light/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/gemfire-light/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire-light/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/gemfire-light/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire-light/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/gemfire-light/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire-light/README.textile -------------------------------------------------------------------------------- /collection-plugins/gemfire-light/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire-light/build.xml -------------------------------------------------------------------------------- /collection-plugins/gemfire-light/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire-light/pom.xml -------------------------------------------------------------------------------- /collection-plugins/gemfire-light/src/main/resources/META-INF/insight-plugin-gemfire-light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire-light/src/main/resources/META-INF/insight-plugin-gemfire-light.xml -------------------------------------------------------------------------------- /collection-plugins/gemfire-light/src/test/resources/gemfire.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire-light/src/test/resources/gemfire.xml -------------------------------------------------------------------------------- /collection-plugins/gemfire/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire/.classpath -------------------------------------------------------------------------------- /collection-plugins/gemfire/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire/.project -------------------------------------------------------------------------------- /collection-plugins/gemfire/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/gemfire/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/gemfire/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/gemfire/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire/README.textile -------------------------------------------------------------------------------- /collection-plugins/gemfire/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire/build.xml -------------------------------------------------------------------------------- /collection-plugins/gemfire/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire/pom.xml -------------------------------------------------------------------------------- /collection-plugins/gemfire/src/main/resources/META-INF/insight-plugin-gemfire.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire/src/main/resources/META-INF/insight-plugin-gemfire.xml -------------------------------------------------------------------------------- /collection-plugins/gemfire/src/test/resources/gemfire.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/gemfire/src/test/resources/gemfire.xml -------------------------------------------------------------------------------- /collection-plugins/grails/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/grails/.classpath -------------------------------------------------------------------------------- /collection-plugins/grails/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/grails/.project -------------------------------------------------------------------------------- /collection-plugins/grails/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/grails/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/grails/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/grails/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/grails/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/grails/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/grails/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/grails/README.textile -------------------------------------------------------------------------------- /collection-plugins/grails/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/grails/build.xml -------------------------------------------------------------------------------- /collection-plugins/grails/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/grails/pom.xml -------------------------------------------------------------------------------- /collection-plugins/grails/src/main/resources/META-INF/insight-plugin-grails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/grails/src/main/resources/META-INF/insight-plugin-grails.xml -------------------------------------------------------------------------------- /collection-plugins/grails/src/test/resources/META-INF/test-app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/grails/src/test/resources/META-INF/test-app-context.xml -------------------------------------------------------------------------------- /collection-plugins/hadoop/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/.classpath -------------------------------------------------------------------------------- /collection-plugins/hadoop/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/.project -------------------------------------------------------------------------------- /collection-plugins/hadoop/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/hadoop/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/hadoop/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/hadoop/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/README.textile -------------------------------------------------------------------------------- /collection-plugins/hadoop/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/build.xml -------------------------------------------------------------------------------- /collection-plugins/hadoop/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/pom.xml -------------------------------------------------------------------------------- /collection-plugins/hadoop/src/main/resources/META-INF/insight-plugin-hadoop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/src/main/resources/META-INF/insight-plugin-hadoop.xml -------------------------------------------------------------------------------- /collection-plugins/hadoop/src/main/resources/com/springsource/insight/plugin/hadoop/job.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/src/main/resources/com/springsource/insight/plugin/hadoop/job.ftl -------------------------------------------------------------------------------- /collection-plugins/hadoop/src/main/resources/com/springsource/insight/plugin/hadoop/mapper.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/src/main/resources/com/springsource/insight/plugin/hadoop/mapper.ftl -------------------------------------------------------------------------------- /collection-plugins/hadoop/src/main/resources/com/springsource/insight/plugin/hadoop/reducer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/src/main/resources/com/springsource/insight/plugin/hadoop/reducer.ftl -------------------------------------------------------------------------------- /collection-plugins/hadoop/src/test/java/com/springsource/insight/plugin/hadoop/WordCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/src/test/java/com/springsource/insight/plugin/hadoop/WordCount.java -------------------------------------------------------------------------------- /collection-plugins/hadoop/src/test/resources/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hadoop/src/test/resources/input.txt -------------------------------------------------------------------------------- /collection-plugins/hibernate/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hibernate/.classpath -------------------------------------------------------------------------------- /collection-plugins/hibernate/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hibernate/.project -------------------------------------------------------------------------------- /collection-plugins/hibernate/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hibernate/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/hibernate/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hibernate/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/hibernate/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hibernate/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/hibernate/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hibernate/README.textile -------------------------------------------------------------------------------- /collection-plugins/hibernate/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hibernate/build.xml -------------------------------------------------------------------------------- /collection-plugins/hibernate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hibernate/pom.xml -------------------------------------------------------------------------------- /collection-plugins/hibernate/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hibernate/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/hibernate/src/main/resources/META-INF/insight-plugin-hibernate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hibernate/src/main/resources/META-INF/insight-plugin-hibernate.xml -------------------------------------------------------------------------------- /collection-plugins/hibernate/src/main/resources/com/springsource/insight/plugin/hibernate/hibernate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/hibernate/src/main/resources/com/springsource/insight/plugin/hibernate/hibernate.ftl -------------------------------------------------------------------------------- /collection-plugins/httpclient3/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient3/.classpath -------------------------------------------------------------------------------- /collection-plugins/httpclient3/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient3/.project -------------------------------------------------------------------------------- /collection-plugins/httpclient3/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient3/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/httpclient3/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient3/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/httpclient3/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient3/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/httpclient3/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient3/README.textile -------------------------------------------------------------------------------- /collection-plugins/httpclient3/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient3/build.xml -------------------------------------------------------------------------------- /collection-plugins/httpclient3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient3/pom.xml -------------------------------------------------------------------------------- /collection-plugins/httpclient3/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient3/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/httpclient3/src/main/resources/META-INF/insight-plugin-apache-httpclient3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient3/src/main/resources/META-INF/insight-plugin-apache-httpclient3.xml -------------------------------------------------------------------------------- /collection-plugins/httpclient4/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient4/.classpath -------------------------------------------------------------------------------- /collection-plugins/httpclient4/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient4/.project -------------------------------------------------------------------------------- /collection-plugins/httpclient4/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient4/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/httpclient4/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient4/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/httpclient4/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient4/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/httpclient4/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient4/README.textile -------------------------------------------------------------------------------- /collection-plugins/httpclient4/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient4/build.xml -------------------------------------------------------------------------------- /collection-plugins/httpclient4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient4/pom.xml -------------------------------------------------------------------------------- /collection-plugins/httpclient4/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient4/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/httpclient4/src/main/resources/META-INF/insight-plugin-apache-httpclient4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/httpclient4/src/main/resources/META-INF/insight-plugin-apache-httpclient4.xml -------------------------------------------------------------------------------- /collection-plugins/jax-rs/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/.classpath -------------------------------------------------------------------------------- /collection-plugins/jax-rs/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/.project -------------------------------------------------------------------------------- /collection-plugins/jax-rs/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/jax-rs/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jax-rs/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jax-rs/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/README.textile -------------------------------------------------------------------------------- /collection-plugins/jax-rs/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/build.xml -------------------------------------------------------------------------------- /collection-plugins/jax-rs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/pom.xml -------------------------------------------------------------------------------- /collection-plugins/jax-rs/src/main/java/com/springsource/insight/plugin/jaxrs/JaxrsDefinitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/src/main/java/com/springsource/insight/plugin/jaxrs/JaxrsDefinitions.java -------------------------------------------------------------------------------- /collection-plugins/jax-rs/src/main/java/com/springsource/insight/plugin/jaxrs/JaxrsParamType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/src/main/java/com/springsource/insight/plugin/jaxrs/JaxrsParamType.java -------------------------------------------------------------------------------- /collection-plugins/jax-rs/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/jax-rs/src/main/resources/META-INF/insight-plugin-jax-rs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/src/main/resources/META-INF/insight-plugin-jax-rs.xml -------------------------------------------------------------------------------- /collection-plugins/jax-rs/src/main/resources/com/springsource/insight/plugin/jaxrs/jax-rs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/src/main/resources/com/springsource/insight/plugin/jaxrs/jax-rs.ftl -------------------------------------------------------------------------------- /collection-plugins/jax-rs/src/test/java/com/springsource/insight/plugin/jaxrs/RestServiceInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jax-rs/src/test/java/com/springsource/insight/plugin/jaxrs/RestServiceInstance.java -------------------------------------------------------------------------------- /collection-plugins/jcr/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/.classpath -------------------------------------------------------------------------------- /collection-plugins/jcr/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/.project -------------------------------------------------------------------------------- /collection-plugins/jcr/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/jcr/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jcr/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jcr/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/README.textile -------------------------------------------------------------------------------- /collection-plugins/jcr/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/build.xml -------------------------------------------------------------------------------- /collection-plugins/jcr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/pom.xml -------------------------------------------------------------------------------- /collection-plugins/jcr/src/main/java/com/springsource/insight/plugin/jcr/JCRCollectionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/main/java/com/springsource/insight/plugin/jcr/JCRCollectionUtils.java -------------------------------------------------------------------------------- /collection-plugins/jcr/src/main/java/com/springsource/insight/plugin/jcr/JCREndPointAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/main/java/com/springsource/insight/plugin/jcr/JCREndPointAnalyzer.java -------------------------------------------------------------------------------- /collection-plugins/jcr/src/main/java/com/springsource/insight/plugin/jcr/OperationCollectionTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/main/java/com/springsource/insight/plugin/jcr/OperationCollectionTypes.java -------------------------------------------------------------------------------- /collection-plugins/jcr/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/jcr/src/main/resources/META-INF/insight-plugin-jcr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/main/resources/META-INF/insight-plugin-jcr.xml -------------------------------------------------------------------------------- /collection-plugins/jcr/src/main/resources/com/springsource/insight/plugin/jcr/get.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/main/resources/com/springsource/insight/plugin/jcr/get.ftl -------------------------------------------------------------------------------- /collection-plugins/jcr/src/main/resources/com/springsource/insight/plugin/jcr/item.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/main/resources/com/springsource/insight/plugin/jcr/item.ftl -------------------------------------------------------------------------------- /collection-plugins/jcr/src/main/resources/com/springsource/insight/plugin/jcr/login.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/main/resources/com/springsource/insight/plugin/jcr/login.ftl -------------------------------------------------------------------------------- /collection-plugins/jcr/src/main/resources/com/springsource/insight/plugin/jcr/query.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/main/resources/com/springsource/insight/plugin/jcr/query.ftl -------------------------------------------------------------------------------- /collection-plugins/jcr/src/main/resources/com/springsource/insight/plugin/jcr/workspace.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/main/resources/com/springsource/insight/plugin/jcr/workspace.ftl -------------------------------------------------------------------------------- /collection-plugins/jcr/src/test/java/com/springsource/insight/plugin/jcr/SimpleTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/test/java/com/springsource/insight/plugin/jcr/SimpleTests.java -------------------------------------------------------------------------------- /collection-plugins/jcr/src/test/resources/repository.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jcr/src/test/resources/repository.xml -------------------------------------------------------------------------------- /collection-plugins/jdbc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/.classpath -------------------------------------------------------------------------------- /collection-plugins/jdbc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/.project -------------------------------------------------------------------------------- /collection-plugins/jdbc/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/jdbc/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jdbc/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jdbc/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/README.textile -------------------------------------------------------------------------------- /collection-plugins/jdbc/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/build.xml -------------------------------------------------------------------------------- /collection-plugins/jdbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/pom.xml -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/ConnectionsTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/ConnectionsTracker.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/DatabaseJDBCURIAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/DatabaseJDBCURIAnalyzer.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/JdbcOperationFinalizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/JdbcOperationFinalizer.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/SQLFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/SQLFormatter.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/SqlToHtml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/SqlToHtml.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/WeakKeyHashMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/WeakKeyHashMap.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/DatabaseType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/DatabaseType.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/JdbcUrlMetaData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/JdbcUrlMetaData.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/JdbcUrlParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/JdbcUrlParser.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/SqlParserPattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/java/com/springsource/insight/plugin/jdbc/parser/SqlParserPattern.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/resources/META-INF/insight-plugin-jdbc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/resources/META-INF/insight-plugin-jdbc.xml -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/resources/com/springsource/insight/plugin/jdbc/jdbc-connect.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/resources/com/springsource/insight/plugin/jdbc/jdbc-connect.ftl -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/main/resources/com/springsource/insight/plugin/jdbc/jdbc.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/main/resources/com/springsource/insight/plugin/jdbc/jdbc.ftl -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/ConnectionsTrackerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/ConnectionsTrackerTest.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/PoolingConnectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/PoolingConnectionTest.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/SQLFormatterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/SQLFormatterTest.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/SqlToHtmlTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/SqlToHtmlTest.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/StoredProcedureExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/StoredProcedureExample.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/WeakKeyHashMapTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/WeakKeyHashMapTest.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/parsers/HsqlParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/parsers/HsqlParserTest.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/parsers/MssqlParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/parsers/MssqlParserTest.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/parsers/MySqlParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/parsers/MySqlParserTest.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/parsers/SqlTestEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/java/com/springsource/insight/plugin/jdbc/parsers/SqlTestEntry.java -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/resources/JdbcTraceTest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/resources/JdbcTraceTest.ser -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/resources/jdbc-test-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/resources/jdbc-test-context.xml -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/resources/jdbc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/resources/jdbc.properties -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/resources/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/resources/schema.sql -------------------------------------------------------------------------------- /collection-plugins/jdbc/src/test/resources/testdata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jdbc/src/test/resources/testdata.sql -------------------------------------------------------------------------------- /collection-plugins/jms/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/.classpath -------------------------------------------------------------------------------- /collection-plugins/jms/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/.project -------------------------------------------------------------------------------- /collection-plugins/jms/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/jms/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jms/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jms/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/README.textile -------------------------------------------------------------------------------- /collection-plugins/jms/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/build.xml -------------------------------------------------------------------------------- /collection-plugins/jms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/pom.xml -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/AbstractJMSCollectionAspect.aj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/AbstractJMSCollectionAspect.aj -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/DeliveryModeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/DeliveryModeType.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/DestinationType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/DestinationType.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSConsumerCollectionAspect.aj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSConsumerCollectionAspect.aj -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSEndPointAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSEndPointAnalyzer.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSPluginOperationType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSPluginOperationType.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSPluginUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSPluginUtils.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSProducerCollectionAspect.aj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSProducerCollectionAspect.aj -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSSendMetricsGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JMSSendMetricsGenerator.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JmsTraceSourceAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/JmsTraceSourceAnalyzer.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/MessageOperationMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/MessageOperationMap.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/MessageType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/MessageType.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/MessageWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/java/com/springsource/insight/plugin/jms/MessageWrapper.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/resources/META-INF/insight-plugin-jms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/resources/META-INF/insight-plugin-jms.xml -------------------------------------------------------------------------------- /collection-plugins/jms/src/main/resources/com/springsource/insight/plugin/jms/jms.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/main/resources/com/springsource/insight/plugin/jms/jms.ftl -------------------------------------------------------------------------------- /collection-plugins/jms/src/test/java/com/springsource/insight/plugin/jms/JMSPluginUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/test/java/com/springsource/insight/plugin/jms/JMSPluginUtilsTest.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/test/java/com/springsource/insight/plugin/jms/MessageOperationMapTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/test/java/com/springsource/insight/plugin/jms/MessageOperationMapTest.java -------------------------------------------------------------------------------- /collection-plugins/jms/src/test/resources/JmsTraceTest.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jms/src/test/resources/JmsTraceTest.ser -------------------------------------------------------------------------------- /collection-plugins/jmx/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/.classpath -------------------------------------------------------------------------------- /collection-plugins/jmx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/.project -------------------------------------------------------------------------------- /collection-plugins/jmx/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/jmx/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jmx/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jmx/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/README.textile -------------------------------------------------------------------------------- /collection-plugins/jmx/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/build.xml -------------------------------------------------------------------------------- /collection-plugins/jmx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/pom.xml -------------------------------------------------------------------------------- /collection-plugins/jmx/src/main/resources/META-INF/insight-plugin-jmx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/src/main/resources/META-INF/insight-plugin-jmx.xml -------------------------------------------------------------------------------- /collection-plugins/jmx/src/main/resources/com/springsource/insight/plugin/jmx/javax-mgmt-attr.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/src/main/resources/com/springsource/insight/plugin/jmx/javax-mgmt-attr.ftl -------------------------------------------------------------------------------- /collection-plugins/jmx/src/main/resources/com/springsource/insight/plugin/jmx/javax-mgmt-invoke.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/src/main/resources/com/springsource/insight/plugin/jmx/javax-mgmt-invoke.ftl -------------------------------------------------------------------------------- /collection-plugins/jmx/src/test/java/com/springsource/insight/plugin/jmx/DelegatingMBeanServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/src/test/java/com/springsource/insight/plugin/jmx/DelegatingMBeanServer.java -------------------------------------------------------------------------------- /collection-plugins/jmx/src/test/java/com/springsource/insight/plugin/jmx/SpringMBeanComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/src/test/java/com/springsource/insight/plugin/jmx/SpringMBeanComponent.java -------------------------------------------------------------------------------- /collection-plugins/jmx/src/test/resources/META-INF/jmx-plugin-test-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jmx/src/test/resources/META-INF/jmx-plugin-test-context.xml -------------------------------------------------------------------------------- /collection-plugins/jndi/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/.classpath -------------------------------------------------------------------------------- /collection-plugins/jndi/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/.project -------------------------------------------------------------------------------- /collection-plugins/jndi/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/jndi/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jndi/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jndi/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/README.textile -------------------------------------------------------------------------------- /collection-plugins/jndi/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/build.xml -------------------------------------------------------------------------------- /collection-plugins/jndi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/pom.xml -------------------------------------------------------------------------------- /collection-plugins/jndi/src/main/resources/META-INF/insight-plugin-jndi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/src/main/resources/META-INF/insight-plugin-jndi.xml -------------------------------------------------------------------------------- /collection-plugins/jndi/src/main/resources/com/springsource/insight/plugin/jndi/javax-naming-bind.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/src/main/resources/com/springsource/insight/plugin/jndi/javax-naming-bind.ftl -------------------------------------------------------------------------------- /collection-plugins/jndi/src/main/resources/com/springsource/insight/plugin/jndi/javax-naming-lookup.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/src/main/resources/com/springsource/insight/plugin/jndi/javax-naming-lookup.ftl -------------------------------------------------------------------------------- /collection-plugins/jndi/src/test/java/com/springsource/insight/plugin/jndi/JndiTestContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jndi/src/test/java/com/springsource/insight/plugin/jndi/JndiTestContext.java -------------------------------------------------------------------------------- /collection-plugins/jpa/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/.classpath -------------------------------------------------------------------------------- /collection-plugins/jpa/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/.project -------------------------------------------------------------------------------- /collection-plugins/jpa/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/jpa/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jpa/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jpa/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/README.textile -------------------------------------------------------------------------------- /collection-plugins/jpa/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/build.xml -------------------------------------------------------------------------------- /collection-plugins/jpa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/pom.xml -------------------------------------------------------------------------------- /collection-plugins/jpa/src/main/java/com/springsource/insight/plugin/jpa/JpaDefinitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/src/main/java/com/springsource/insight/plugin/jpa/JpaDefinitions.java -------------------------------------------------------------------------------- /collection-plugins/jpa/src/main/resources/META-INF/insight-plugin-jpa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/src/main/resources/META-INF/insight-plugin-jpa.xml -------------------------------------------------------------------------------- /collection-plugins/jpa/src/main/resources/com/springsource/insight/plugin/jpa/entity-manager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/src/main/resources/com/springsource/insight/plugin/jpa/entity-manager.ftl -------------------------------------------------------------------------------- /collection-plugins/jpa/src/main/resources/com/springsource/insight/plugin/jpa/tx-entity.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/src/main/resources/com/springsource/insight/plugin/jpa/tx-entity.ftl -------------------------------------------------------------------------------- /collection-plugins/jpa/src/test/java/com/springsource/insight/plugin/jpa/TestEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/src/test/java/com/springsource/insight/plugin/jpa/TestEntity.java -------------------------------------------------------------------------------- /collection-plugins/jpa/src/test/resources/META-INF/jpaTestContext.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/src/test/resources/META-INF/jpaTestContext.properties -------------------------------------------------------------------------------- /collection-plugins/jpa/src/test/resources/META-INF/jpaTestContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/src/test/resources/META-INF/jpaTestContext.xml -------------------------------------------------------------------------------- /collection-plugins/jpa/src/test/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/src/test/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /collection-plugins/jpa/src/test/resources/db/hsqldb/dbInit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jpa/src/test/resources/db/hsqldb/dbInit.sql -------------------------------------------------------------------------------- /collection-plugins/jta/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jta/.classpath -------------------------------------------------------------------------------- /collection-plugins/jta/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jta/.project -------------------------------------------------------------------------------- /collection-plugins/jta/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jta/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/jta/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jta/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jta/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jta/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jta/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jta/README.textile -------------------------------------------------------------------------------- /collection-plugins/jta/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jta/build.xml -------------------------------------------------------------------------------- /collection-plugins/jta/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jta/pom.xml -------------------------------------------------------------------------------- /collection-plugins/jta/src/main/java/com/springsource/insight/plugin/jta/JtaDefinitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jta/src/main/java/com/springsource/insight/plugin/jta/JtaDefinitions.java -------------------------------------------------------------------------------- /collection-plugins/jta/src/main/resources/META-INF/insight-plugin-jta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jta/src/main/resources/META-INF/insight-plugin-jta.xml -------------------------------------------------------------------------------- /collection-plugins/jta/src/main/resources/com/springsource/insight/plugin/jta/jta.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jta/src/main/resources/com/springsource/insight/plugin/jta/jta.ftl -------------------------------------------------------------------------------- /collection-plugins/jws/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/.classpath -------------------------------------------------------------------------------- /collection-plugins/jws/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/.project -------------------------------------------------------------------------------- /collection-plugins/jws/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/jws/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jws/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/jws/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/README.textile -------------------------------------------------------------------------------- /collection-plugins/jws/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/build.xml -------------------------------------------------------------------------------- /collection-plugins/jws/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/pom.xml -------------------------------------------------------------------------------- /collection-plugins/jws/src/main/java/com/springsource/insight/plugin/jws/JwsDefinitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/src/main/java/com/springsource/insight/plugin/jws/JwsDefinitions.java -------------------------------------------------------------------------------- /collection-plugins/jws/src/main/java/com/springsource/insight/plugin/jws/JwsEndPointAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/src/main/java/com/springsource/insight/plugin/jws/JwsEndPointAnalyzer.java -------------------------------------------------------------------------------- /collection-plugins/jws/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/jws/src/main/resources/META-INF/insight-plugin-jws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/src/main/resources/META-INF/insight-plugin-jws.xml -------------------------------------------------------------------------------- /collection-plugins/jws/src/main/resources/com/springsource/insight/plugin/jws/jws.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/src/main/resources/com/springsource/insight/plugin/jws/jws.ftl -------------------------------------------------------------------------------- /collection-plugins/jws/src/test/java/com/springsource/insight/plugin/jws/JwsServiceDefinitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/src/test/java/com/springsource/insight/plugin/jws/JwsServiceDefinitions.java -------------------------------------------------------------------------------- /collection-plugins/jws/src/test/java/com/springsource/insight/plugin/jws/JwsServiceInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/jws/src/test/java/com/springsource/insight/plugin/jws/JwsServiceInstance.java -------------------------------------------------------------------------------- /collection-plugins/ldap/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/.classpath -------------------------------------------------------------------------------- /collection-plugins/ldap/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/.project -------------------------------------------------------------------------------- /collection-plugins/ldap/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/ldap/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/ldap/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/ldap/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/README.textile -------------------------------------------------------------------------------- /collection-plugins/ldap/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/build.xml -------------------------------------------------------------------------------- /collection-plugins/ldap/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/pom.xml -------------------------------------------------------------------------------- /collection-plugins/ldap/src/main/java/com/springsource/insight/plugin/ldap/LdapDefinitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/src/main/java/com/springsource/insight/plugin/ldap/LdapDefinitions.java -------------------------------------------------------------------------------- /collection-plugins/ldap/src/main/resources/META-INF/insight-plugin-ldap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/src/main/resources/META-INF/insight-plugin-ldap.xml -------------------------------------------------------------------------------- /collection-plugins/ldap/src/main/resources/com/springsource/insight/plugin/ldap/javax-naming-ldap.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/src/main/resources/com/springsource/insight/plugin/ldap/javax-naming-ldap.ftl -------------------------------------------------------------------------------- /collection-plugins/ldap/src/test/java/com/springsource/insight/plugin/ldap/DirContextCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/src/test/java/com/springsource/insight/plugin/ldap/DirContextCreator.java -------------------------------------------------------------------------------- /collection-plugins/ldap/src/test/java/com/springsource/insight/plugin/ldap/TestLdapContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/src/test/java/com/springsource/insight/plugin/ldap/TestLdapContext.java -------------------------------------------------------------------------------- /collection-plugins/ldap/src/test/resources/META-INF/testUsers.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/ldap/src/test/resources/META-INF/testUsers.ldif -------------------------------------------------------------------------------- /collection-plugins/logging/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/.classpath -------------------------------------------------------------------------------- /collection-plugins/logging/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/.project -------------------------------------------------------------------------------- /collection-plugins/logging/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/logging/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/logging/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/logging/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/README.textile -------------------------------------------------------------------------------- /collection-plugins/logging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/build.xml -------------------------------------------------------------------------------- /collection-plugins/logging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/pom.xml -------------------------------------------------------------------------------- /collection-plugins/logging/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/logging/src/main/resources/META-INF/insight-plugin-logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/src/main/resources/META-INF/insight-plugin-logging.xml -------------------------------------------------------------------------------- /collection-plugins/logging/src/main/resources/com/springsource/insight/plugin/logging/logging.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/src/main/resources/com/springsource/insight/plugin/logging/logging.ftl -------------------------------------------------------------------------------- /collection-plugins/logging/src/test/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/logging/src/test/resources/log4j.xml -------------------------------------------------------------------------------- /collection-plugins/mail/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/.classpath -------------------------------------------------------------------------------- /collection-plugins/mail/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/.project -------------------------------------------------------------------------------- /collection-plugins/mail/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/mail/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/mail/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/mail/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/README.textile -------------------------------------------------------------------------------- /collection-plugins/mail/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/build.xml -------------------------------------------------------------------------------- /collection-plugins/mail/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/pom.xml -------------------------------------------------------------------------------- /collection-plugins/mail/src/main/java/com/springsource/insight/plugin/mail/MailDefinitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/src/main/java/com/springsource/insight/plugin/mail/MailDefinitions.java -------------------------------------------------------------------------------- /collection-plugins/mail/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/mail/src/main/resources/META-INF/insight-plugin-javax-mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/src/main/resources/META-INF/insight-plugin-javax-mail.xml -------------------------------------------------------------------------------- /collection-plugins/mail/src/main/resources/com/springsource/insight/plugin/mail/mail.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mail/src/main/resources/com/springsource/insight/plugin/mail/mail.ftl -------------------------------------------------------------------------------- /collection-plugins/mongodb/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/.classpath -------------------------------------------------------------------------------- /collection-plugins/mongodb/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/.project -------------------------------------------------------------------------------- /collection-plugins/mongodb/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/mongodb/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/mongodb/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/mongodb/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/README.textile -------------------------------------------------------------------------------- /collection-plugins/mongodb/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/build.xml -------------------------------------------------------------------------------- /collection-plugins/mongodb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/pom.xml -------------------------------------------------------------------------------- /collection-plugins/mongodb/src/main/resources/META-INF/insight-plugin-mongodb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/src/main/resources/META-INF/insight-plugin-mongodb.xml -------------------------------------------------------------------------------- /collection-plugins/mongodb/src/main/resources/mongodb-collection-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/src/main/resources/mongodb-collection-delete.png -------------------------------------------------------------------------------- /collection-plugins/mongodb/src/main/resources/mongodb-collection-getall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/src/main/resources/mongodb-collection-getall.png -------------------------------------------------------------------------------- /collection-plugins/mongodb/src/main/resources/mongodb-collection-insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/src/main/resources/mongodb-collection-insert.png -------------------------------------------------------------------------------- /collection-plugins/mongodb/src/test/java/com/mongodb/DBCollectionDummy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/src/test/java/com/mongodb/DBCollectionDummy.java -------------------------------------------------------------------------------- /collection-plugins/mongodb/src/test/java/com/springsource/insight/plugin/mongodb/DBCursorDummy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/src/test/java/com/springsource/insight/plugin/mongodb/DBCursorDummy.java -------------------------------------------------------------------------------- /collection-plugins/mongodb/src/test/java/com/springsource/insight/plugin/mongodb/DBDummy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/src/test/java/com/springsource/insight/plugin/mongodb/DBDummy.java -------------------------------------------------------------------------------- /collection-plugins/mongodb/src/test/java/com/springsource/insight/plugin/mongodb/OperationFTLTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/src/test/java/com/springsource/insight/plugin/mongodb/OperationFTLTest.java -------------------------------------------------------------------------------- /collection-plugins/mongodb/src/test/resources/META-INF/test-app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/mongodb/src/test/resources/META-INF/test-app-context.xml -------------------------------------------------------------------------------- /collection-plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/pom.xml -------------------------------------------------------------------------------- /collection-plugins/portlet/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/.classpath -------------------------------------------------------------------------------- /collection-plugins/portlet/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/.project -------------------------------------------------------------------------------- /collection-plugins/portlet/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/portlet/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/portlet/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/portlet/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/README.textile -------------------------------------------------------------------------------- /collection-plugins/portlet/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/build.xml -------------------------------------------------------------------------------- /collection-plugins/portlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/pom.xml -------------------------------------------------------------------------------- /collection-plugins/portlet/src/main/resources/META-INF/insight-plugin-portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/src/main/resources/META-INF/insight-plugin-portlet.xml -------------------------------------------------------------------------------- /collection-plugins/portlet/src/main/resources/com/springsource/insight/plugin/portlet/action.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/src/main/resources/com/springsource/insight/plugin/portlet/action.ftl -------------------------------------------------------------------------------- /collection-plugins/portlet/src/main/resources/com/springsource/insight/plugin/portlet/event.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/src/main/resources/com/springsource/insight/plugin/portlet/event.ftl -------------------------------------------------------------------------------- /collection-plugins/portlet/src/main/resources/com/springsource/insight/plugin/portlet/render.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/src/main/resources/com/springsource/insight/plugin/portlet/render.ftl -------------------------------------------------------------------------------- /collection-plugins/portlet/src/main/resources/com/springsource/insight/plugin/portlet/resource.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/src/main/resources/com/springsource/insight/plugin/portlet/resource.ftl -------------------------------------------------------------------------------- /collection-plugins/portlet/src/test/java/com/springsource/insight/plugin/portlet/ExamplePortlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/src/test/java/com/springsource/insight/plugin/portlet/ExamplePortlet.java -------------------------------------------------------------------------------- /collection-plugins/portlet/src/test/webapp/WEB-INF/portlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/src/test/webapp/WEB-INF/portlet.xml -------------------------------------------------------------------------------- /collection-plugins/portlet/src/test/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/src/test/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /collection-plugins/portlet/src/test/webapp/ask.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/src/test/webapp/ask.jsp -------------------------------------------------------------------------------- /collection-plugins/portlet/src/test/webapp/edit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/src/test/webapp/edit.jsp -------------------------------------------------------------------------------- /collection-plugins/portlet/src/test/webapp/help.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/portlet/src/test/webapp/help.jsp -------------------------------------------------------------------------------- /collection-plugins/quartz/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/quartz/.classpath -------------------------------------------------------------------------------- /collection-plugins/quartz/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/quartz/.project -------------------------------------------------------------------------------- /collection-plugins/quartz/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/quartz/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/quartz/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/quartz/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/quartz/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/quartz/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/quartz/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/quartz/README.textile -------------------------------------------------------------------------------- /collection-plugins/quartz/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/quartz/build.xml -------------------------------------------------------------------------------- /collection-plugins/quartz/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/quartz/pom.xml -------------------------------------------------------------------------------- /collection-plugins/quartz/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/quartz/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/quartz/src/main/resources/META-INF/insight-plugin-quartz-scheduler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/quartz/src/main/resources/META-INF/insight-plugin-quartz-scheduler.xml -------------------------------------------------------------------------------- /collection-plugins/rabbitmq-client/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rabbitmq-client/.classpath -------------------------------------------------------------------------------- /collection-plugins/rabbitmq-client/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rabbitmq-client/.project -------------------------------------------------------------------------------- /collection-plugins/rabbitmq-client/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rabbitmq-client/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/rabbitmq-client/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rabbitmq-client/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/rabbitmq-client/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rabbitmq-client/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/rabbitmq-client/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rabbitmq-client/README.textile -------------------------------------------------------------------------------- /collection-plugins/rabbitmq-client/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rabbitmq-client/build.xml -------------------------------------------------------------------------------- /collection-plugins/rabbitmq-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rabbitmq-client/pom.xml -------------------------------------------------------------------------------- /collection-plugins/rabbitmq-client/src/main/resources/META-INF/insight-plugin-rabbitmq-client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rabbitmq-client/src/main/resources/META-INF/insight-plugin-rabbitmq-client.xml -------------------------------------------------------------------------------- /collection-plugins/redis/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/.classpath -------------------------------------------------------------------------------- /collection-plugins/redis/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/.project -------------------------------------------------------------------------------- /collection-plugins/redis/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/redis/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/redis/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/redis/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/README.textile -------------------------------------------------------------------------------- /collection-plugins/redis/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/build.xml -------------------------------------------------------------------------------- /collection-plugins/redis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/pom.xml -------------------------------------------------------------------------------- /collection-plugins/redis/src/main/java/com/springsource/insight/plugin/redis/RedisClientAspect.aj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/src/main/java/com/springsource/insight/plugin/redis/RedisClientAspect.aj -------------------------------------------------------------------------------- /collection-plugins/redis/src/main/java/com/springsource/insight/plugin/redis/util/RedisUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/src/main/java/com/springsource/insight/plugin/redis/util/RedisUtil.java -------------------------------------------------------------------------------- /collection-plugins/redis/src/main/resources/META-INF/insight-plugin-redis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/src/main/resources/META-INF/insight-plugin-redis.xml -------------------------------------------------------------------------------- /collection-plugins/redis/src/main/resources/com/springsource/insight/plugin/redis/redisClientMethod.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/src/main/resources/com/springsource/insight/plugin/redis/redisClientMethod.ftl -------------------------------------------------------------------------------- /collection-plugins/redis/src/main/resources/com/springsource/insight/plugin/redis/redisCollection.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/src/main/resources/com/springsource/insight/plugin/redis/redisCollection.ftl -------------------------------------------------------------------------------- /collection-plugins/redis/src/main/resources/com/springsource/insight/plugin/redis/redisMap.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/src/main/resources/com/springsource/insight/plugin/redis/redisMap.ftl -------------------------------------------------------------------------------- /collection-plugins/redis/src/test/java/com/springsource/insight/plugin/redis/DummyJedisCommands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/src/test/java/com/springsource/insight/plugin/redis/DummyJedisCommands.java -------------------------------------------------------------------------------- /collection-plugins/redis/src/test/java/com/springsource/insight/plugin/redis/DummyRedisMapImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/src/test/java/com/springsource/insight/plugin/redis/DummyRedisMapImpl.java -------------------------------------------------------------------------------- /collection-plugins/redis/src/test/java/com/springsource/insight/plugin/redis/RedisClientAspectTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/redis/src/test/java/com/springsource/insight/plugin/redis/RedisClientAspectTest.java -------------------------------------------------------------------------------- /collection-plugins/rmi/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/.classpath -------------------------------------------------------------------------------- /collection-plugins/rmi/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/.project -------------------------------------------------------------------------------- /collection-plugins/rmi/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/rmi/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/rmi/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/rmi/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/README.textile -------------------------------------------------------------------------------- /collection-plugins/rmi/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/build.xml -------------------------------------------------------------------------------- /collection-plugins/rmi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/pom.xml -------------------------------------------------------------------------------- /collection-plugins/rmi/src/main/java/com/springsource/insight/plugin/rmi/RmiDefinitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/src/main/java/com/springsource/insight/plugin/rmi/RmiDefinitions.java -------------------------------------------------------------------------------- /collection-plugins/rmi/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/rmi/src/main/resources/META-INF/insight-plugin-rmi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/src/main/resources/META-INF/insight-plugin-rmi.xml -------------------------------------------------------------------------------- /collection-plugins/rmi/src/main/resources/com/springsource/insight/plugin/rmi/rmi-action.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/src/main/resources/com/springsource/insight/plugin/rmi/rmi-action.ftl -------------------------------------------------------------------------------- /collection-plugins/rmi/src/main/resources/com/springsource/insight/plugin/rmi/rmi-list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/src/main/resources/com/springsource/insight/plugin/rmi/rmi-list.ftl -------------------------------------------------------------------------------- /collection-plugins/rmi/src/test/java/com/springsource/insight/plugin/rmi/TestRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/rmi/src/test/java/com/springsource/insight/plugin/rmi/TestRegistry.java -------------------------------------------------------------------------------- /collection-plugins/run-exec/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/.classpath -------------------------------------------------------------------------------- /collection-plugins/run-exec/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/.project -------------------------------------------------------------------------------- /collection-plugins/run-exec/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/run-exec/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/run-exec/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/run-exec/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/README.textile -------------------------------------------------------------------------------- /collection-plugins/run-exec/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/build.xml -------------------------------------------------------------------------------- /collection-plugins/run-exec/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/pom.xml -------------------------------------------------------------------------------- /collection-plugins/run-exec/src/main/java/com/springsource/insight/plugin/runexec/RunnableResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/src/main/java/com/springsource/insight/plugin/runexec/RunnableResolver.java -------------------------------------------------------------------------------- /collection-plugins/run-exec/src/main/java/com/springsource/insight/plugin/runexec/RunnableWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/src/main/java/com/springsource/insight/plugin/runexec/RunnableWrapper.java -------------------------------------------------------------------------------- /collection-plugins/run-exec/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/run-exec/src/main/resources/META-INF/insight-plugin-run-exec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/src/main/resources/META-INF/insight-plugin-run-exec.xml -------------------------------------------------------------------------------- /collection-plugins/run-exec/src/main/resources/com/springsource/insight/plugin/runexec/run-runnable.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/src/main/resources/com/springsource/insight/plugin/runexec/run-runnable.ftl -------------------------------------------------------------------------------- /collection-plugins/run-exec/src/test/java/com/springsource/insight/plugin/runexec/TestExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/src/test/java/com/springsource/insight/plugin/runexec/TestExecutor.java -------------------------------------------------------------------------------- /collection-plugins/run-exec/src/test/java/com/springsource/insight/plugin/runexec/TestRunnable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/run-exec/src/test/java/com/springsource/insight/plugin/runexec/TestRunnable.java -------------------------------------------------------------------------------- /collection-plugins/servlet/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/servlet/.classpath -------------------------------------------------------------------------------- /collection-plugins/servlet/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/servlet/.project -------------------------------------------------------------------------------- /collection-plugins/servlet/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/servlet/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/servlet/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/servlet/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/servlet/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/servlet/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/servlet/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/servlet/README.textile -------------------------------------------------------------------------------- /collection-plugins/servlet/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/servlet/build.xml -------------------------------------------------------------------------------- /collection-plugins/servlet/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/servlet/pom.xml -------------------------------------------------------------------------------- /collection-plugins/servlet/src/main/resources/META-INF/insight-plugin-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/servlet/src/main/resources/META-INF/insight-plugin-servlet.xml -------------------------------------------------------------------------------- /collection-plugins/servlet/src/main/resources/com/springsource/insight/plugin/servlet/http.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/servlet/src/main/resources/com/springsource/insight/plugin/servlet/http.ftl -------------------------------------------------------------------------------- /collection-plugins/servlet/src/test/java/com/springsource/insight/plugin/servlet/DummyFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/servlet/src/test/java/com/springsource/insight/plugin/servlet/DummyFilter.java -------------------------------------------------------------------------------- /collection-plugins/socket/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/.classpath -------------------------------------------------------------------------------- /collection-plugins/socket/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/.project -------------------------------------------------------------------------------- /collection-plugins/socket/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/socket/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/socket/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/socket/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/README.textile -------------------------------------------------------------------------------- /collection-plugins/socket/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/build.xml -------------------------------------------------------------------------------- /collection-plugins/socket/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/pom.xml -------------------------------------------------------------------------------- /collection-plugins/socket/src/main/java/com/springsource/insight/plugin/socket/SocketDefinitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/src/main/java/com/springsource/insight/plugin/socket/SocketDefinitions.java -------------------------------------------------------------------------------- /collection-plugins/socket/src/main/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/src/main/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/socket/src/main/resources/META-INF/insight-plugin-socket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/src/main/resources/META-INF/insight-plugin-socket.xml -------------------------------------------------------------------------------- /collection-plugins/socket/src/main/resources/com/springsource/insight/plugin/socket/socket.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/socket/src/main/resources/com/springsource/insight/plugin/socket/socket.ftl -------------------------------------------------------------------------------- /collection-plugins/spring-batch/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-batch/.classpath -------------------------------------------------------------------------------- /collection-plugins/spring-batch/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-batch/.project -------------------------------------------------------------------------------- /collection-plugins/spring-batch/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-batch/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-batch/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-batch/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-batch/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-batch/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-batch/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-batch/README.textile -------------------------------------------------------------------------------- /collection-plugins/spring-batch/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-batch/build.xml -------------------------------------------------------------------------------- /collection-plugins/spring-batch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-batch/pom.xml -------------------------------------------------------------------------------- /collection-plugins/spring-batch/src/main/resources/META-INF/insight-plugin-spring-batch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-batch/src/main/resources/META-INF/insight-plugin-spring-batch.xml -------------------------------------------------------------------------------- /collection-plugins/spring-batch/src/test/resources/META-INF/jobContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-batch/src/test/resources/META-INF/jobContext.xml -------------------------------------------------------------------------------- /collection-plugins/spring-cloud/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-cloud/pom.xml -------------------------------------------------------------------------------- /collection-plugins/spring-cloud/src/main/resources/META-INF/insight-plugin-spring-cloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-cloud/src/main/resources/META-INF/insight-plugin-spring-cloud -------------------------------------------------------------------------------- /collection-plugins/spring-core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/.classpath -------------------------------------------------------------------------------- /collection-plugins/spring-core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/.project -------------------------------------------------------------------------------- /collection-plugins/spring-core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-core/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-core/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-core/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/README.textile -------------------------------------------------------------------------------- /collection-plugins/spring-core/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/build.xml -------------------------------------------------------------------------------- /collection-plugins/spring-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/pom.xml -------------------------------------------------------------------------------- /collection-plugins/spring-core/src/main/resources/META-INF/insight-plugin-spring-core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/src/main/resources/META-INF/insight-plugin-spring-core.xml -------------------------------------------------------------------------------- /collection-plugins/spring-core/src/test/java/com/foo/example/AbstractBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/src/test/java/com/foo/example/AbstractBean.java -------------------------------------------------------------------------------- /collection-plugins/spring-core/src/test/java/com/foo/example/ExampleComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/src/test/java/com/foo/example/ExampleComponent.java -------------------------------------------------------------------------------- /collection-plugins/spring-core/src/test/java/com/foo/example/ExampleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/src/test/java/com/foo/example/ExampleRepository.java -------------------------------------------------------------------------------- /collection-plugins/spring-core/src/test/java/com/foo/example/ExampleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/src/test/java/com/foo/example/ExampleService.java -------------------------------------------------------------------------------- /collection-plugins/spring-core/src/test/java/il/co/springsource/insight/MyApplicationListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/src/test/java/il/co/springsource/insight/MyApplicationListener.java -------------------------------------------------------------------------------- /collection-plugins/spring-core/src/test/java/il/co/springsource/insight/MyEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/src/test/java/il/co/springsource/insight/MyEvent.java -------------------------------------------------------------------------------- /collection-plugins/spring-core/src/test/java/il/co/springsource/insight/MyEventHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/src/test/java/il/co/springsource/insight/MyEventHolder.java -------------------------------------------------------------------------------- /collection-plugins/spring-core/src/test/java/il/co/springsource/insight/MyEventSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-core/src/test/java/il/co/springsource/insight/MyEventSource.java -------------------------------------------------------------------------------- /collection-plugins/spring-data/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/.classpath -------------------------------------------------------------------------------- /collection-plugins/spring-data/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/.project -------------------------------------------------------------------------------- /collection-plugins/spring-data/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-data/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-data/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-data/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/README.textile -------------------------------------------------------------------------------- /collection-plugins/spring-data/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/build.xml -------------------------------------------------------------------------------- /collection-plugins/spring-data/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/pom.xml -------------------------------------------------------------------------------- /collection-plugins/spring-data/src/main/resources/META-INF/insight-plugin-spring-data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/src/main/resources/META-INF/insight-plugin-spring-data.xml -------------------------------------------------------------------------------- /collection-plugins/spring-data/src/test/resources/META-INF/jpaTestContext.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/src/test/resources/META-INF/jpaTestContext.properties -------------------------------------------------------------------------------- /collection-plugins/spring-data/src/test/resources/META-INF/jpaTestContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/src/test/resources/META-INF/jpaTestContext.xml -------------------------------------------------------------------------------- /collection-plugins/spring-data/src/test/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/src/test/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /collection-plugins/spring-data/src/test/resources/db/hsqldb/dbInit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-data/src/test/resources/db/hsqldb/dbInit.sql -------------------------------------------------------------------------------- /collection-plugins/spring-integration/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration/README.textile -------------------------------------------------------------------------------- /collection-plugins/spring-integration/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration/build.xml -------------------------------------------------------------------------------- /collection-plugins/spring-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration/pom.xml -------------------------------------------------------------------------------- /collection-plugins/spring-integration/src/main/resources/META-INF/insight-plugin-spring-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration/src/main/resources/META-INF/insight-plugin-spring-integration.xml -------------------------------------------------------------------------------- /collection-plugins/spring-integration/src/test/resources/META-INF/test-app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration/src/test/resources/META-INF/test-app-context.xml -------------------------------------------------------------------------------- /collection-plugins/spring-integration2/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration2/.classpath -------------------------------------------------------------------------------- /collection-plugins/spring-integration2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration2/.project -------------------------------------------------------------------------------- /collection-plugins/spring-integration2/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration2/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-integration2/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration2/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-integration2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration2/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-integration2/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration2/README.textile -------------------------------------------------------------------------------- /collection-plugins/spring-integration2/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration2/build.xml -------------------------------------------------------------------------------- /collection-plugins/spring-integration2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration2/pom.xml -------------------------------------------------------------------------------- /collection-plugins/spring-integration2/src/test/resources/META-INF/test-app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-integration2/src/test/resources/META-INF/test-app-context.xml -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/.classpath -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/.project -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/build.xml -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/pom.xml -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/src/main/resources/META-INF/insight-plugin-spring-neo4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/src/main/resources/META-INF/insight-plugin-spring-neo4j.xml -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/src/main/resources/com/springsource/insight/plugin/neo4j/find.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/src/main/resources/com/springsource/insight/plugin/neo4j/find.ftl -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/src/main/resources/com/springsource/insight/plugin/neo4j/lookup.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/src/main/resources/com/springsource/insight/plugin/neo4j/lookup.ftl -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/src/main/resources/com/springsource/insight/plugin/neo4j/query.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/src/main/resources/com/springsource/insight/plugin/neo4j/query.ftl -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/src/main/resources/com/springsource/insight/plugin/neo4j/save.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/src/main/resources/com/springsource/insight/plugin/neo4j/save.ftl -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/src/main/resources/com/springsource/insight/plugin/neo4j/traverse.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/src/main/resources/com/springsource/insight/plugin/neo4j/traverse.ftl -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/src/test/java/com/springsource/insight/plugin/neo4j/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/src/test/java/com/springsource/insight/plugin/neo4j/Movie.java -------------------------------------------------------------------------------- /collection-plugins/spring-neo4j/src/test/resources/META-INF/spring-neo4j-plugin-test-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-neo4j/src/test/resources/META-INF/spring-neo4j-plugin-test-context.xml -------------------------------------------------------------------------------- /collection-plugins/spring-security/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-security/.classpath -------------------------------------------------------------------------------- /collection-plugins/spring-security/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-security/.project -------------------------------------------------------------------------------- /collection-plugins/spring-security/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-security/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-security/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-security/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-security/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-security/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-security/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-security/README.textile -------------------------------------------------------------------------------- /collection-plugins/spring-security/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-security/build.xml -------------------------------------------------------------------------------- /collection-plugins/spring-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-security/pom.xml -------------------------------------------------------------------------------- /collection-plugins/spring-security/src/main/resources/META-INF/insight-plugin-spring-security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-security/src/main/resources/META-INF/insight-plugin-spring-security.xml -------------------------------------------------------------------------------- /collection-plugins/spring-security/src/test/resources/META-INF/aop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-security/src/test/resources/META-INF/aop.xml -------------------------------------------------------------------------------- /collection-plugins/spring-tx/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-tx/.classpath -------------------------------------------------------------------------------- /collection-plugins/spring-tx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-tx/.project -------------------------------------------------------------------------------- /collection-plugins/spring-tx/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-tx/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-tx/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-tx/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-tx/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-tx/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-tx/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-tx/README.textile -------------------------------------------------------------------------------- /collection-plugins/spring-tx/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-tx/build.xml -------------------------------------------------------------------------------- /collection-plugins/spring-tx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-tx/pom.xml -------------------------------------------------------------------------------- /collection-plugins/spring-tx/src/main/resources/META-INF/insight-plugin-springtx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-tx/src/main/resources/META-INF/insight-plugin-springtx.xml -------------------------------------------------------------------------------- /collection-plugins/spring-web/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-web/.classpath -------------------------------------------------------------------------------- /collection-plugins/spring-web/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-web/.project -------------------------------------------------------------------------------- /collection-plugins/spring-web/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-web/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-web/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-web/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-web/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-web/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-web/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-web/README.textile -------------------------------------------------------------------------------- /collection-plugins/spring-web/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-web/build.xml -------------------------------------------------------------------------------- /collection-plugins/spring-web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-web/pom.xml -------------------------------------------------------------------------------- /collection-plugins/spring-web/src/main/resources/META-INF/insight-plugin-springweb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-web/src/main/resources/META-INF/insight-plugin-springweb.xml -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/.classpath -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/.project -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/README.textile -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/build.xml -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/pom.xml -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/src/main/resources/META-INF/insight-plugin-spring-webflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/src/main/resources/META-INF/insight-plugin-spring-webflow.xml -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/src/main/resources/com/springsource/insight/plugin/webflow/action.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/src/main/resources/com/springsource/insight/plugin/webflow/action.ftl -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/src/main/resources/com/springsource/insight/plugin/webflow/start.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/src/main/resources/com/springsource/insight/plugin/webflow/start.ftl -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/src/main/resources/com/springsource/insight/plugin/webflow/state.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/src/main/resources/com/springsource/insight/plugin/webflow/state.ftl -------------------------------------------------------------------------------- /collection-plugins/spring-webflow/src/test/resources/webflow-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/spring-webflow/src/test/resources/webflow-test.xml -------------------------------------------------------------------------------- /collection-plugins/struts2/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/.classpath -------------------------------------------------------------------------------- /collection-plugins/struts2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/.project -------------------------------------------------------------------------------- /collection-plugins/struts2/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/struts2/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/struts2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/struts2/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/README.textile -------------------------------------------------------------------------------- /collection-plugins/struts2/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/build.xml -------------------------------------------------------------------------------- /collection-plugins/struts2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/pom.xml -------------------------------------------------------------------------------- /collection-plugins/struts2/src/main/resources/META-INF/insight-plugin-struts2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/src/main/resources/META-INF/insight-plugin-struts2.xml -------------------------------------------------------------------------------- /collection-plugins/struts2/src/main/resources/com/springsource/insight/plugin/struts2/action.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/src/main/resources/com/springsource/insight/plugin/struts2/action.ftl -------------------------------------------------------------------------------- /collection-plugins/struts2/src/main/resources/com/springsource/insight/plugin/struts2/intercept.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/src/main/resources/com/springsource/insight/plugin/struts2/intercept.ftl -------------------------------------------------------------------------------- /collection-plugins/struts2/src/main/resources/com/springsource/insight/plugin/struts2/result.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/src/main/resources/com/springsource/insight/plugin/struts2/result.ftl -------------------------------------------------------------------------------- /collection-plugins/struts2/src/main/resources/com/springsource/insight/plugin/struts2/start.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/src/main/resources/com/springsource/insight/plugin/struts2/start.ftl -------------------------------------------------------------------------------- /collection-plugins/struts2/src/test/java/com/springsource/insight/plugin/struts2/Struts2Tests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/src/test/java/com/springsource/insight/plugin/struts2/Struts2Tests.java -------------------------------------------------------------------------------- /collection-plugins/struts2/src/test/java/com/springsource/insight/plugin/struts2/test/model/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/src/test/java/com/springsource/insight/plugin/struts2/test/model/Person.java -------------------------------------------------------------------------------- /collection-plugins/struts2/src/test/resources/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/struts2/src/test/resources/struts.xml -------------------------------------------------------------------------------- /collection-plugins/tomcat/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/tomcat/.classpath -------------------------------------------------------------------------------- /collection-plugins/tomcat/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/tomcat/.project -------------------------------------------------------------------------------- /collection-plugins/tomcat/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/tomcat/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /collection-plugins/tomcat/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/tomcat/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /collection-plugins/tomcat/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/tomcat/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /collection-plugins/tomcat/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/tomcat/README.textile -------------------------------------------------------------------------------- /collection-plugins/tomcat/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/tomcat/build.xml -------------------------------------------------------------------------------- /collection-plugins/tomcat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/tomcat/pom.xml -------------------------------------------------------------------------------- /collection-plugins/tomcat/src/main/resources/META-INF/insight-plugin-tomcat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/collection-plugins/tomcat/src/main/resources/META-INF/insight-plugin-tomcat.xml -------------------------------------------------------------------------------- /core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/core/pom.xml -------------------------------------------------------------------------------- /parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/parent/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/pom.xml -------------------------------------------------------------------------------- /samples/payme-insight-plugin/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-insight-plugin/.classpath -------------------------------------------------------------------------------- /samples/payme-insight-plugin/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-insight-plugin/.project -------------------------------------------------------------------------------- /samples/payme-insight-plugin/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-insight-plugin/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /samples/payme-insight-plugin/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-insight-plugin/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /samples/payme-insight-plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-insight-plugin/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /samples/payme-insight-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-insight-plugin/pom.xml -------------------------------------------------------------------------------- /samples/payme-insight-plugin/src/main/resources/META-INF/insight-plugin-myplugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-insight-plugin/src/main/resources/META-INF/insight-plugin-myplugin.xml -------------------------------------------------------------------------------- /samples/payme-insight-plugin/src/main/resources/org/myorg/insight/myplugin/cash_money_operation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-insight-plugin/src/main/resources/org/myorg/insight/myplugin/cash_money_operation.ftl -------------------------------------------------------------------------------- /samples/payme-insight-plugin/src/test/java/org/myorg/insight/myplugin/CashMoneyOperationViewTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-insight-plugin/src/test/java/org/myorg/insight/myplugin/CashMoneyOperationViewTest.java -------------------------------------------------------------------------------- /samples/payme-insight-plugin/src/test/resources/META-INF/test-app-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-insight-plugin/src/test/resources/META-INF/test-app-context.xml -------------------------------------------------------------------------------- /samples/payme-webapp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/.classpath -------------------------------------------------------------------------------- /samples/payme-webapp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/.project -------------------------------------------------------------------------------- /samples/payme-webapp/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/.settings/.jsdtscope -------------------------------------------------------------------------------- /samples/payme-webapp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /samples/payme-webapp/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /samples/payme-webapp/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /samples/payme-webapp/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /samples/payme-webapp/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /samples/payme-webapp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /samples/payme-webapp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /samples/payme-webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/pom.xml -------------------------------------------------------------------------------- /samples/payme-webapp/src/main/java/com/springsource/insight/samples/payme/FakeAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/src/main/java/com/springsource/insight/samples/payme/FakeAccount.java -------------------------------------------------------------------------------- /samples/payme-webapp/src/main/java/com/springsource/insight/samples/payme/PaymentController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/src/main/java/com/springsource/insight/samples/payme/PaymentController.java -------------------------------------------------------------------------------- /samples/payme-webapp/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /samples/payme-webapp/src/main/webapp/WEB-INF/jsp/gotpaid.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/src/main/webapp/WEB-INF/jsp/gotpaid.jsp -------------------------------------------------------------------------------- /samples/payme-webapp/src/main/webapp/WEB-INF/payme-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/src/main/webapp/WEB-INF/payme-servlet.xml -------------------------------------------------------------------------------- /samples/payme-webapp/src/main/webapp/WEB-INF/spring/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/src/main/webapp/WEB-INF/spring/applicationContext.xml -------------------------------------------------------------------------------- /samples/payme-webapp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /samples/payme-webapp/src/test/java/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/payme-webapp/src/test/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/payme-webapp/src/test/resources/log4j.xml -------------------------------------------------------------------------------- /samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-insight-plugins/HEAD/samples/pom.xml --------------------------------------------------------------------------------