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.util.Config; 24 import org.apache.juddi.util.jdbc.Transaction; 25 import org.apache.juddi.uuidgen.UUIDGen; 26 import org.apache.juddi.uuidgen.UUIDGenFactory; 27 28 31 class TestBusinessDescTable 32 { 33 public static void main(String [] args) 34 throws Exception 35 { 36 Config.setStringProperty("juddi.useConnectionPool","true"); 39 40 Connection conn = null; 41 try { 42 conn = Database.aquireConnection(); 43 test(conn); 44 } 45 finally { 46 if (conn != null) 47 conn.close(); 48 } 49 } 50 51 public static void test(Connection connection) throws Exception 52 { 53 Transaction txn = new Transaction(); 54 UUIDGen uuidgen = UUIDGenFactory.getUUIDGen(); 55 56 if (connection != null) 57 { 58 try 59 { 60 String businessKey = uuidgen.uuidgen(); 61 BusinessEntity business = new BusinessEntity(); 62 business.setBusinessKey(businessKey); 63 business.setAuthorizedName("sviens"); 64 business.setOperator("WebServiceRegistry.com"); 65 66 Vector descList = new Vector (); 67 descList.add(new Description("blah, blah, blah", "en")); 68 descList.add(new Description("Yadda, Yadda, Yadda", "it")); 69 descList.add(new Description("WhoobWhoobWhoobWhoob", "cy")); 70 descList.add(new Description("Haachachachacha", "km")); 71 72 String authorizedUserID = "sviens"; 73 74 txn.begin(connection); 76 77 BusinessEntityTable.insert(business, authorizedUserID, connection); 79 80 BusinessDescTable.insert(businessKey, descList, connection); 82 83 descList = BusinessDescTable.select(businessKey, connection); 85 86 89 descList = BusinessDescTable.select(businessKey, connection); 91 92 txn.commit(); 94 } 95 catch (Exception ex) 96 { 97 try 98 { 99 txn.rollback(); 100 } 101 catch (java.sql.SQLException sqlex) 102 { 103 sqlex.printStackTrace(); 104 } 105 throw ex; 106 } 107 } 108 } 109 } 110 | Popular Tags |