KickJava   Java API By Example, From Geeks To Geeks.

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


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.binding.AccessPoint;
22 import org.apache.juddi.datatype.binding.BindingTemplate;
23 import org.apache.juddi.datatype.binding.TModelInstanceInfo;
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 TestTModelInstanceInfoTable
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         String JavaDoc businessKey = uuidgen.uuidgen();
64         BusinessEntity business = new BusinessEntity();
65         business.setBusinessKey(businessKey);
66         business.setAuthorizedName("mleblanc");
67         business.setOperator("XMLServiceRegistry.com");
68
69         String JavaDoc serviceKey = uuidgen.uuidgen();
70         BusinessService service = new BusinessService();
71         service.setBusinessKey(businessKey);
72         service.setServiceKey(serviceKey);
73
74         String JavaDoc bindingKey = uuidgen.uuidgen();
75         BindingTemplate binding = new BindingTemplate();
76         binding.setServiceKey(serviceKey);
77         binding.setBindingKey(bindingKey);
78         binding.setAccessPoint(
79           new AccessPoint(
80             "http://www.juddi.org/tmodelinstanceinfo.html",
81             "http"));
82
83         Vector JavaDoc infoList = new Vector JavaDoc();
84         infoList.add(new TModelInstanceInfo(uuidgen.uuidgen()));
85         infoList.add(new TModelInstanceInfo(uuidgen.uuidgen()));
86         infoList.add(new TModelInstanceInfo(uuidgen.uuidgen()));
87         infoList.add(new TModelInstanceInfo(uuidgen.uuidgen()));
88
89         String JavaDoc authorizedUserID = "sviens";
90
91         // begin a new transaction
92
txn.begin(connection);
93
94         // insert a new BusinessEntity
95
BusinessEntityTable.insert(business, authorizedUserID, connection);
96
97         // insert a new BusinessService
98
BusinessServiceTable.insert(service, connection);
99
100         // insert a new BindingTemplate
101
BindingTemplateTable.insert(binding, connection);
102
103         // insert a Collection of TModelInstanceInfo objects
104
TModelInstanceInfoTable.insert(bindingKey, infoList, connection);
105
106         // select a Collection of TModelInstanceInfo objects (by BindingKey)
107
infoList = TModelInstanceInfoTable.select(bindingKey, connection);
108
109         // delete a Collection of TModelInstanceInfo objects (by BindingKey)
110
TModelInstanceInfoTable.delete(bindingKey, connection);
111
112         // re-select a Collection of TModelInstanceInfo objects (by BindingKey)
113
infoList = TModelInstanceInfoTable.select(bindingKey, connection);
114
115         // commit the transaction
116
txn.commit();
117       }
118       catch (Exception JavaDoc ex)
119       {
120         try
121         {
122           txn.rollback();
123         }
124         catch (java.sql.SQLException JavaDoc sqlex)
125         {
126           sqlex.printStackTrace();
127         }
128         throw ex;
129       }
130     }
131   }
132 }
133
Popular Tags