1 16 package org.apache.juddi.datastore.jdbc; 17 18 import java.sql.Connection ; 19 import java.util.Vector ; 20 21 import org.apache.juddi.datatype.Description; 22 import org.apache.juddi.datatype.business.BusinessEntity; 23 import org.apache.juddi.datatype.service.BusinessService; 24 import org.apache.juddi.util.Config; 25 import org.apache.juddi.util.jdbc.Transaction; 26 import org.apache.juddi.uuidgen.UUIDGen; 27 import org.apache.juddi.uuidgen.UUIDGenFactory; 28 29 32 class TestServiceDescTable 33 { 34 public static void main(String [] args) 35 throws Exception 36 { 37 Config.setStringProperty("juddi.useConnectionPool","true"); 40 41 Connection conn = null; 42 try { 43 conn = Database.aquireConnection(); 44 test(conn); 45 } 46 finally { 47 if (conn != null) 48 conn.close(); 49 } 50 } 51 52 public static void test(Connection connection) throws Exception 53 { 54 Transaction txn = new Transaction(); 55 UUIDGen uuidgen = UUIDGenFactory.getUUIDGen(); 56 57 if (connection != null) 58 { 59 try 60 { 61 String businessKey = uuidgen.uuidgen(); 62 BusinessEntity business = new BusinessEntity(); 63 business.setBusinessKey(businessKey); 64 business.setAuthorizedName("sviens"); 65 business.setOperator("WebServiceRegistry.com"); 66 67 String serviceKey = uuidgen.uuidgen(); 68 BusinessService service = new BusinessService(); 69 service.setServiceKey(serviceKey); 70 service.setBusinessKey(businessKey); 71 72 Vector descList = new Vector (); 73 descList.add(new Description("blah, blah, blah", "en")); 74 descList.add(new Description("Yadda, Yadda, Yadda", "it")); 75 descList.add(new Description("WhoobWhoobWhoobWhoob", "cy")); 76 descList.add(new Description("Haachachachacha", "km")); 77 78 String authorizedUserID = "sviens"; 79 80 txn.begin(connection); 82 83 BusinessEntityTable.insert(business, authorizedUserID, connection); 85 86 BusinessServiceTable.insert(service, connection); 88 89 ServiceDescTable.insert(serviceKey, descList, connection); 91 92 descList = ServiceDescTable.select(serviceKey, connection); 94 95 ServiceDescTable.delete(serviceKey, connection); 97 98 descList = ServiceDescTable.select(serviceKey, connection); 100 101 txn.commit(); 103 } 104 catch (Exception ex) 105 { 106 try 107 { 108 txn.rollback(); 109 } 110 catch (java.sql.SQLException sqlex) 111 { 112 sqlex.printStackTrace(); 113 } 114 throw ex; 115 } 116 } 117 } 118 } 119 | Popular Tags |