Package org.example.tests.utils

Examples of org.example.tests.utils.WibbleAnalyzer


    context.ungetService(ref);
  }

  // Test whiteboard registration of Resource Analyzers.
  public void testWhiteboardAnalyzer() throws Exception {
    ServiceRegistration reg = context.registerService(ResourceAnalyzer.class.getName(), new WibbleAnalyzer(), null);

    ServiceReference ref = context.getServiceReference(ResourceIndexer.class.getName());
    ResourceIndexer indexer = (ResourceIndexer) context.getService(ref);
    StringWriter writer = new StringWriter();
View Full Code Here


  // Test whiteboard registration of Resource Analyzers, with resource filter
  // property.
  public void testWhiteboardAnalyzerWithFilter() throws Exception {
    Dictionary<String, Object> analyzerProps = new Hashtable<String, Object>();
    analyzerProps.put(ResourceAnalyzer.FILTER, "(location=*sion.jar)");
    ServiceRegistration reg = context.registerService(ResourceAnalyzer.class.getName(), new WibbleAnalyzer(), analyzerProps);

    ServiceReference ref = context.getServiceReference(ResourceIndexer.class.getName());
    ResourceIndexer indexer = (ResourceIndexer) context.getService(ref);
    StringWriter writer = new StringWriter();

View Full Code Here

TOP

Related Classes of org.example.tests.utils.WibbleAnalyzer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.