if (connection != null)
{
try
{
String businessKey = uuidgen.uuidgen();
BusinessEntity business = new BusinessEntity();
business.setBusinessKey(businessKey);
business.setAuthorizedName("sviens");
business.setOperator("WebServiceRegistry.com");
Vector keyRefs = new Vector();
keyRefs.add(new KeyedReference(uuidgen.uuidgen(), "blah, blah, blah"));
keyRefs.add(
new KeyedReference(uuidgen.uuidgen(), "Yadda, Yadda, Yadda"));
keyRefs.add(
new KeyedReference(uuidgen.uuidgen(), "WhoobWhoobWhoobWhoob"));
keyRefs.add(new KeyedReference(uuidgen.uuidgen(), "Haachachachacha"));
String authorizedUserID = "sviens";
// begin a new transaction
txn.begin(connection);
// insert a new BusinessEntity
BusinessEntityTable.insert(business, authorizedUserID, connection);
// insert a Collection of new Category KeyedReference objects
BusinessCategoryTable.insert(businessKey, keyRefs, connection);
// insert another new BusinessEntity
business.setBusinessKey(uuidgen.uuidgen());
BusinessEntityTable.insert(business, authorizedUserID, connection);
// insert another Collection of new Category KeyedReference objects
BusinessCategoryTable.insert(
business.getBusinessKey(),
keyRefs,
connection);
// select a Collection of Category KeyedReference objects
keyRefs = BusinessCategoryTable.select(businessKey, connection);