KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > juddi > datastore > jdbc > TestBusinessDescTable


1 /*
2  * Copyright 2001-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.juddi.datastore.jdbc;
17
18 import java.sql.Connection JavaDoc;
19 import java.util.Vector JavaDoc;
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 /**
29  * @author Steve Viens (sviens@apache.org)
30  */

31 class TestBusinessDescTable
32 {
33   public static void main(String JavaDoc[] args)
34     throws Exception JavaDoc
35   {
36     // make sure we're using a DBCP DataSource and
37
// not trying to use JNDI to aquire one.
38
Config.setStringProperty("juddi.useConnectionPool","true");
39
40     Connection JavaDoc 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 JavaDoc connection) throws Exception JavaDoc
52   {
53     Transaction txn = new Transaction();
54     UUIDGen uuidgen = UUIDGenFactory.getUUIDGen();
55
56     if (connection != null)
57     {
58       try
59       {
60         String JavaDoc businessKey = uuidgen.uuidgen();
61         BusinessEntity business = new BusinessEntity();
62         business.setBusinessKey(businessKey);
63         business.setAuthorizedName("sviens");
64         business.setOperator("WebServiceRegistry.com");
65
66         Vector JavaDoc descList = new Vector JavaDoc();
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 JavaDoc authorizedUserID = "sviens";
73
74         // begin a new transaction
75
txn.begin(connection);
76
77         // insert a new BusinessEntity
78
BusinessEntityTable.insert(business, authorizedUserID, connection);
79
80         // insert a Collection of Description objects
81
BusinessDescTable.insert(businessKey, descList, connection);
82
83         // select the Collection of Description objects
84
descList = BusinessDescTable.select(businessKey, connection);
85
86         // // delete the Collection of Description objects
87
// BusinessDescTable.delete(businessKey,connection);
88

89         // re-select the Collection of Description objects
90
descList = BusinessDescTable.select(businessKey, connection);
91
92         // commit the transaction
93
txn.commit();
94       }
95       catch (Exception JavaDoc ex)
96       {
97         try
98         {
99           txn.rollback();
100         }
101         catch (java.sql.SQLException JavaDoc sqlex)
102         {
103           sqlex.printStackTrace();
104         }
105         throw ex;
106       }
107     }
108   }
109 }
110
Popular Tags