1 17 package org.apache.ws.jaxme; 18 19 import javax.xml.bind.Element; 20 import javax.xml.bind.JAXBException; 21 22 23 29 public interface PM { 30 34 public void init(JMManager pManager) throws JAXBException; 35 36 38 public JMManager getManager(); 39 40 48 public void select(Observer pObserver, String pQuery) throws JAXBException; 49 50 67 public void select(Observer pObserver, String pQuery, 68 PMParams pPlaceHolderArgs) throws JAXBException; 69 70 74 public java.util.Iterator select(String pQuery) throws JAXBException; 75 76 89 public java.util.Iterator select(String pQuery, 90 PMParams pPlaceHolderArgs) 91 throws JAXBException; 92 93 95 public void insert(Element element) throws JAXBException; 96 97 99 public void update(Element element) throws JAXBException; 100 101 103 public void delete(Element element) throws JAXBException; 104 105 107 public Object create() throws JAXBException; 108 } 109 | Popular Tags |