1 14 package com.ibm.webdav; 15 16 import org.w3c.dom.*; 17 18 19 27 public interface SearchSchema { 28 public void addPropertyDescription(Element propertyEl, Element datatypeEl, 29 boolean bSearchable, boolean bSelectable, 30 boolean bSortable) 31 throws Exception ; 32 33 public void addOperator(Element opEl, boolean bIncludeLiteral) 34 throws Exception ; 35 36 public void addAnyOtherPropertyDescription(boolean bSearchable, 37 boolean bSelectable, 38 boolean bSortable) 39 throws Exception ; 40 41 public Element asXML(); 42 } | Popular Tags |