1 23 24 package org.objectweb.medor.datasource.api; 25 26 31 public interface DataStore { 32 33 short MEDORTC_STORE = 0; 34 short JDBC_STORE = 1; 35 short TEXTFILE_STORE = 2; 36 short ODMG_STORE = 3; 37 short XMLDOCUMENT_STORE = 4; 38 short UDDI_STORE = 5; 39 40 47 String getName(); 48 49 55 boolean isSameAs(DataStore ds); 56 57 65 boolean isCapable(short operationType); 66 67 71 short getDataStoreType(); 72 73 80 String getClientName(); 81 82 86 void setClientName(String cName); 87 88 } 89 | Popular Tags |