1 26 27 package com.opensugar.cube.ldap; 28 29 import java.util.Dictionary ; 30 31 public class NullClause extends Clause { 33 34 public NullClause() { 35 } 36 37 public boolean filter( Dictionary props ) { 38 return true; 39 } 40 41 public boolean areKeysCaseSensitive() { 43 return true; 44 } 45 46 public String getCanonicalForm() { 47 return ""; 48 } 49 50 } 51 | Popular Tags |