KickJava   Java API By Example, From Geeks To Geeks.

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


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.binding.AccessPoint;
23 import org.apache.juddi.datatype.binding.BindingTemplate;
24 import org.apache.juddi.datatype.business.BusinessEntity;
25 import org.apache.juddi.datatype.service.BusinessService;
26 import org.apache.juddi.util.Config;
27 import org.apache.juddi.util.jdbc.Transaction;
28 import org.apache.juddi.uuidgen.UUIDGen;
29 import org.apache.juddi.uuidgen.UUIDGenFactory;
30
31 /**
32  * @author Steve Viens (sviens@apache.org)
33  */

34 class TestBindingDescTable
35 {
36   public static void main(String JavaDoc[] args)
37     throws Exception JavaDoc
38   {
39     // make sure we're using a DBCP DataSource and
40
// not trying to use JNDI to aquire one.
41
Config.setStringProperty("juddi.useConnectionPool","true");
42
43     Connection JavaDoc conn = null;
44     try {
45       conn = Database.aquireConnection();
46       test(conn);
47     }
48     finally {
49       if (conn != null)
50         conn.close();
51     }
52   }
53
54   public static void test(Connection JavaDoc connection) throws Exception JavaDoc
55   {
56     Transaction txn = new Transaction();
57     UUIDGen uuidgen = UUIDGenFactory.getUUIDGen();
58
59     if (connection != null)
60     {
61       try
62       {
63         //BusinessKey businessKey = BusinessKey.createKey();
64
String JavaDoc businessKey = uuidgen.uuidgen();
65         BusinessEntity business = new BusinessEntity();
66         business.setBusinessKey(businessKey);
67         business.setAuthorizedName("sviens");
68         business.setOperator("WebServiceRegistry.com");
69
70         //ServiceKey serviceKey = ServiceKey.createKey();
71
String JavaDoc serviceKey = uuidgen.uuidgen();
72         BusinessService service = new BusinessService();
73         service.setServiceKey(serviceKey);
74         service.setBusinessKey(businessKey);
75
76         //BindingKey bindingKey = BindingKey.createKey();
77
String JavaDoc bindingKey = uuidgen.uuidgen();
78         BindingTemplate binding = new BindingTemplate();
79         binding.setAccessPoint(
80           new AccessPoint("http://www.juddi.org/binding.html", "http"));
81         binding.setHostingRedirector(null);
82         binding.setBindingKey(bindingKey);
83         binding.setServiceKey(serviceKey);
84
85         Vector JavaDoc descList = new Vector JavaDoc();
86         descList.add(new Description("blah, blah, blah", "en"));
87         descList.add(new Description("Yadda, Yadda, Yadda", "it"));
88         descList.add(new Description("WhoobWhoobWhoobWhoob", "cy"));
89         descList.add(new Description("Haachachachacha", "km"));
90
91         String JavaDoc authorizedUserID = "sviens";
92
93         // begin a new transaction
94
txn.begin(connection);
95
96         // insert a new BusinessEntity
97
BusinessEntityTable.insert(business, authorizedUserID, connection);
98
99         // insert a new BusinessService
100
BusinessServiceTable.insert(service, connection);
101
102         // insert a new BindingTemplate
103
BindingTemplateTable.insert(binding, connection);
104
105         // insert a Collection of Description objects
106
BindingDescTable.insert(bindingKey, descList, connection);
107
108         // select the Collection of Description objects
109
descList = BindingDescTable.select(bindingKey, connection);
110
111         // delete the Collection of Description objects
112
BindingDescTable.delete(bindingKey, connection);
113
114         // select the Collection of Description objects
115
descList = BindingDescTable.select(bindingKey, connection);
116
117         // commit the transaction
118
txn.commit();
119       }
120       catch (Exception JavaDoc ex)
121       {
122         try
123         {
124           txn.rollback();
125         }
126         catch (java.sql.SQLException JavaDoc sqlex)
127         {
128           sqlex.printStackTrace();
129         }
130         throw ex;
131       }
132     }
133   }
134 }
135
Popular Tags