1 18 package org.osgi.framework; 19 20 import java.util.Dictionary ; 21 22 47 public interface Filter { 48 61 public boolean match(ServiceReference reference); 62 63 78 public boolean match(Dictionary dictionary); 79 80 88 public String toString(); 89 90 100 public boolean equals(Object obj); 101 102 108 public int hashCode(); 109 110 124 public boolean matchCase(Dictionary dictionary); 125 } 126 | Popular Tags |