1 22 package org.jboss.test.cmp2.lob; 23 24 import java.rmi.RemoteException ; 25 import java.util.Map ; 26 import java.util.Set ; 27 import java.util.List ; 28 29 33 public interface Facade 34 extends javax.ejb.EJBObject 35 { 36 public void createLOB(Integer id) 37 throws Exception , RemoteException ; 38 public void removeLOB(Integer id) 39 throws Exception , RemoteException ; 40 public void addMapEntry(Integer id, Object key, Object value) 41 throws Exception , RemoteException ; 42 public Map getMapField(Integer id) 43 throws Exception , RemoteException ; 44 public void addSetElement(Integer id, Object value) 45 throws Exception , RemoteException ; 46 public Set getSetField(Integer id) 47 throws Exception , RemoteException ; 48 public void addListElement(Integer id, Object value) 49 throws Exception , RemoteException ; 50 public List getListField(Integer id) 51 throws Exception , RemoteException ; 52 public void setBinaryData(Integer id, byte[] value) 53 throws Exception , RemoteException ; 54 public void setBinaryDataElement(Integer id, int index, byte value) 55 throws Exception , RemoteException ; 56 public byte getBinaryDataElement(Integer id, int index) 57 throws Exception , RemoteException ; 58 public void setValueHolderValue(Integer id, String value) 59 throws Exception , RemoteException ; 60 public String getValueHolderValue(Integer id) 61 throws Exception , RemoteException ; 62 public void setCleanGetValueHolderValue(Integer id, String value) 63 throws Exception , RemoteException ; 64 public void modifyCleanGetValueHolderValue(Integer id, String value) 65 throws Exception , RemoteException ; 66 public String getCleanGetValueHolderValue(Integer id) 67 throws Exception , RemoteException ; 68 public String getStateFactoryValueHolderValue(Integer id) 69 throws Exception , RemoteException ; 70 public void setStateFactoryValueHolderValue(Integer id, String value) 71 throws Exception , RemoteException ; 72 public void modifyStateFactoryValueHolderValue(Integer id, String value) 73 throws Exception , RemoteException ; 74 } 75 | Popular Tags |