KickJava   Java API By Example, From Geeks To Geeks.

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


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.KeyedReference;
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 TestBusinessIdentifierTable
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 keyRefs = new Vector JavaDoc();
67         keyRefs.add(new KeyedReference(uuidgen.uuidgen(), "blah, blah, blah"));
68         keyRefs.add(
69           new KeyedReference(uuidgen.uuidgen(), "Yadda, Yadda, Yadda"));
70         keyRefs.add(
71           new KeyedReference(uuidgen.uuidgen(), "WhoobWhoobWhoobWhoob"));
72         keyRefs.add(new KeyedReference(uuidgen.uuidgen(), "Haachachachacha"));
73
74         String JavaDoc authorizedUserID = "sviens";
75
76         // begin a new transaction
77
txn.begin(connection);
78
79         // insert a new BusinessEntity
80
BusinessEntityTable.insert(business, authorizedUserID, connection);
81
82         // insert a Collection of new Identifier KeyedReference objects
83
BusinessIdentifierTable.insert(businessKey, keyRefs, connection);
84
85         // insert another new BusinessEntity
86
business.setBusinessKey(uuidgen.uuidgen());
87         BusinessEntityTable.insert(business, authorizedUserID, connection);
88
89         // insert another Collection of new Identifier KeyedReference objects
90
BusinessIdentifierTable.insert(
91           business.getBusinessKey(),
92           keyRefs,
93           connection);
94
95         // select a Collection of Identifier KeyedReference objects
96
keyRefs = BusinessIdentifierTable.select(businessKey, connection);
97
98         // delete a Collection of Identifier KeyedReference objects
99
BusinessIdentifierTable.delete(businessKey, connection);
100
101         // re-select a Collection of Identifier KeyedReference objects
102
keyRefs = BusinessIdentifierTable.select(businessKey, connection);
103
104         // commit the transaction
105
txn.commit();
106       }
107       catch (Exception JavaDoc ex)
108       {
109         try
110         {
111           txn.rollback();
112         }
113         catch (java.sql.SQLException JavaDoc sqlex)
114         {
115           sqlex.printStackTrace();
116         }
117         throw ex;
118       }
119     }
120   }
121 }
122
Popular Tags