KickJava   Java API By Example, From Geeks To Geeks.

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


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.DiscoveryURL;
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 TestDiscoveryURLTable
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 urlList = new Vector JavaDoc();
67         urlList.add(
68           new DiscoveryURL("businessEntity", "http://www.steveviens.com/abc"));
69         urlList.add(
70           new DiscoveryURL("businessEntity", "http://www.steveviens.com/def"));
71         urlList.add(
72           new DiscoveryURL(
73             "businessEntityExt",
74             "http://www.steveviens.com/ghi"));
75         urlList.add(
76           new DiscoveryURL(
77             "businessEntityExt",
78             "http://www.steveviens.com/jkl"));
79
80         String JavaDoc authorizedUserID = "sviens";
81
82         // begin a new transaction
83
txn.begin(connection);
84
85         // insert a new BusinessEntity
86
BusinessEntityTable.insert(business, authorizedUserID, connection);
87
88         // insert a Collection DiscoveryURL objects
89
DiscoveryURLTable.insert(businessKey, urlList, connection);
90
91         // select a Collection DiscoveryURL objects by BusinessKey
92
urlList = DiscoveryURLTable.select(businessKey, connection);
93
94         // delete a Collection DiscoveryURL objects by BusinessKey
95
DiscoveryURLTable.delete(businessKey, connection);
96
97         // re-select a Collection DiscoveryURL objects by BusinessKey
98
urlList = DiscoveryURLTable.select(businessKey, connection);
99
100         // commit the transaction
101
txn.commit();
102       }
103       catch (Exception JavaDoc ex)
104       {
105         try
106         {
107           txn.rollback();
108         }
109         catch (java.sql.SQLException JavaDoc sqlex)
110         {
111           sqlex.printStackTrace();
112         }
113         throw ex;
114       }
115     }
116   }
117 }
118
Popular Tags