[Mulgara-svn] r690 - in branches/mgr-73/src/jar: query/java/org/mulgara/query query/java/org/mulgara/server resolver/java/org/mulgara/resolver resolver-memory/java/org/mulgara/resolver/memory resolver-spi/java/org/mulgara/resolver/spi resolver-store/java/org/mulgara/resolver/store server-beep/java/org/mulgara/server/beep server-rmi/java/org/mulgara/server/rmi
andrae at mulgara.org
andrae at mulgara.org
Tue Mar 18 07:02:25 UTC 2008
Author: andrae
Date: 2008-03-18 00:02:24 -0700 (Tue, 18 Mar 2008)
New Revision: 690
Modified:
branches/mgr-73/src/jar/query/java/org/mulgara/query/Query.java
branches/mgr-73/src/jar/query/java/org/mulgara/query/SelectElement.java
branches/mgr-73/src/jar/query/java/org/mulgara/server/ResourceManagerInstanceAdaptor.java
branches/mgr-73/src/jar/query/java/org/mulgara/server/Session.java
branches/mgr-73/src/jar/resolver-memory/java/org/mulgara/resolver/memory/MemoryResolver.java
branches/mgr-73/src/jar/resolver-memory/java/org/mulgara/resolver/memory/MemoryXAResource.java
branches/mgr-73/src/jar/resolver-spi/java/org/mulgara/resolver/spi/AbstractXAResource.java
branches/mgr-73/src/jar/resolver-store/java/org/mulgara/resolver/store/StatementStoreResolver.java
branches/mgr-73/src/jar/resolver-store/java/org/mulgara/resolver/store/StatementStoreXAResource.java
branches/mgr-73/src/jar/resolver/java/org/mulgara/resolver/JotmTransactionStandaloneTest.java
branches/mgr-73/src/jar/server-beep/java/org/mulgara/server/beep/BEEPSession.java
branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteSession.java
branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteSessionWrapperSession.java
branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteXAResource.java
branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteXAResourceWrapperXAResource.java
branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/SessionWrapperRemoteSession.java
branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/XAResourceWrapperRemoteXAResource.java
Log:
refs #73
refs #85
Updates copyright notices and javadocs to reflect new work.
Modified: branches/mgr-73/src/jar/query/java/org/mulgara/query/Query.java
===================================================================
--- branches/mgr-73/src/jar/query/java/org/mulgara/query/Query.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/query/java/org/mulgara/query/Query.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -16,7 +16,8 @@
* created by Plugged In Software Pty Ltd are Copyright (C) 2001,2002
* Plugged In Software Pty Ltd. All Rights Reserved.
*
- * Contributor(s): N/A.
+ * Contributor(s):
+ * Move to java-generics copyright Netymon Pty Ltd
*
* [NOTE: The text of this Exhibit A may differ slightly from the text
* of the notices in the Source Code files of the Original Code. You
Modified: branches/mgr-73/src/jar/query/java/org/mulgara/query/SelectElement.java
===================================================================
--- branches/mgr-73/src/jar/query/java/org/mulgara/query/SelectElement.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/query/java/org/mulgara/query/SelectElement.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -1,30 +1,32 @@
/*
- * The contents of this file are subject to the Open Software License
- * Version 3.0 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
- * http://www.rosenlaw.com/OSL3.0.htm
+ * Copyright 2008 The Topaz Foundation
*
- * Software distributed under the License is distributed on an "AS IS"
- * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
- * the License for the specific language governing rights and limitations
- * under the License.
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
*
- * This file is an original work developed by Netymon Pty Ltd
- * (http://www.netymon.com, mailto:mail at netymon.com). Portions created
- * by Netymon Pty Ltd are Copyright (c) 2006 Netymon Pty Ltd.
- * All Rights Reserved.
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ *
+ * Contributions:
*/
package org.mulgara.query;
import java.io.Serializable;
/**
- * Exception to indicate a failure within the transaction handling.
+ * Marker interface to identify elements legally permitted within the
+ * select-clause of an itql query.
*
* @created 2008-01-14
* @author <a href="mailto:andrae at netymon.com">Andrae Muys</a>
* @company <A href="mailto:mail at netymon.com">Netymon Pty Ltd</A>
- * @copyright ©2008 <a href="http://www.topazproject.org/">The Topaz * Foundation</a>
- * @licence Open Software License v3.0</a>
+ * @copyright ©2008 <a href="http://www.topazproject.org/">The Topaz Foundation</a>
+ * @licence Apache License v2.0
*/
public interface SelectElement extends Serializable, Cloneable { }
Modified: branches/mgr-73/src/jar/query/java/org/mulgara/server/ResourceManagerInstanceAdaptor.java
===================================================================
--- branches/mgr-73/src/jar/query/java/org/mulgara/server/ResourceManagerInstanceAdaptor.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/query/java/org/mulgara/server/ResourceManagerInstanceAdaptor.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -1,3 +1,20 @@
+/*
+ * Copyright 2008 The Topaz Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ *
+ * Contributions:
+ */
package org.mulgara.server;
@@ -7,6 +24,15 @@
import java.io.*;
import javax.transaction.xa.XAResource;
+/**
+ * Interface to identify a Resource Manager through an XAResource.
+ *
+ * @created 2008-01-14
+ * @author <a href="mailto:andrae at netymon.com">Andrae Muys</a>
+ * @company <A href="mailto:mail at netymon.com">Netymon Pty Ltd</A>
+ * @copyright ©2008 <a href="http://www.topazproject.org/">The Topaz Foundation</a>
+ * @licence Apache License v2.0
+ */
public interface ResourceManagerInstanceAdaptor {
/**
* Returns an object that globally identifies a ResourceManagerInstance.
Modified: branches/mgr-73/src/jar/query/java/org/mulgara/server/Session.java
===================================================================
--- branches/mgr-73/src/jar/query/java/org/mulgara/server/Session.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/query/java/org/mulgara/server/Session.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -16,7 +16,8 @@
* created by Plugged In Software Pty Ltd are Copyright (C) 2001,2002
* Plugged In Software Pty Ltd. All Rights Reserved.
*
- * Contributor(s): N/A.
+ * Contributor(s):
+ * XAResource addition copyright 2008 The Topaz Foundation
*
* [NOTE: The text of this Exhibit A may differ slightly from the text
* of the notices in the Source Code files of the Original Code. You
Modified: branches/mgr-73/src/jar/resolver/java/org/mulgara/resolver/JotmTransactionStandaloneTest.java
===================================================================
--- branches/mgr-73/src/jar/resolver/java/org/mulgara/resolver/JotmTransactionStandaloneTest.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/resolver/java/org/mulgara/resolver/JotmTransactionStandaloneTest.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -1,3 +1,20 @@
+/*
+ * Copyright 2008 The Topaz Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ *
+ * Contributions:
+ */
package org.mulgara.resolver;
// Java 2 standard packages
@@ -42,6 +59,15 @@
import org.mulgara.server.SessionFactory;
import org.mulgara.server.driver.SessionFactoryFinder;
+/**
+ * Regression test to test JTA integration with external JOTM instance.
+ *
+ * @created 2008-01-11
+ * @author <a href="mailto:andrae at netymon.com">Andrae Muys</a>
+ * @company <A href="mailto:mail at netymon.com">Netymon Pty Ltd</A>
+ * @copyright ©2008 <a href="http://www.topazproject.org/">The Topaz Foundation</a>
+ * @licence Apache License v2.0
+ */
public class JotmTransactionStandaloneTest extends TestCase
{
/** Logger. */
Modified: branches/mgr-73/src/jar/resolver-memory/java/org/mulgara/resolver/memory/MemoryResolver.java
===================================================================
--- branches/mgr-73/src/jar/resolver-memory/java/org/mulgara/resolver/memory/MemoryResolver.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/resolver-memory/java/org/mulgara/resolver/memory/MemoryResolver.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -16,7 +16,8 @@
* created by Plugged In Software Pty Ltd are Copyright (C) 2001,2002
* Plugged In Software Pty Ltd. All Rights Reserved.
*
- * Contributor(s): N/A.
+ * Contributor(s):
+ * Migration to AbstractXAResource copyright 2008 The Topaz Foundation
*
* [NOTE: The text of this Exhibit A may differ slightly from the text
* of the notices in the Source Code files of the Original Code. You
Modified: branches/mgr-73/src/jar/resolver-memory/java/org/mulgara/resolver/memory/MemoryXAResource.java
===================================================================
--- branches/mgr-73/src/jar/resolver-memory/java/org/mulgara/resolver/memory/MemoryXAResource.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/resolver-memory/java/org/mulgara/resolver/memory/MemoryXAResource.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -16,7 +16,8 @@
* created by Plugged In Software Pty Ltd are Copyright (C) 2001,2002
* Plugged In Software Pty Ltd. All Rights Reserved.
*
- * Contributor(s): N/A.
+ * Contributor(s):
+ * Migration to AbstractXAResource copyright 2008 The Topaz Foundation
*
* [NOTE: The text of this Exhibit A may differ slightly from the text
* of the notices in the Source Code files of the Original Code. You
Modified: branches/mgr-73/src/jar/resolver-spi/java/org/mulgara/resolver/spi/AbstractXAResource.java
===================================================================
--- branches/mgr-73/src/jar/resolver-spi/java/org/mulgara/resolver/spi/AbstractXAResource.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/resolver-spi/java/org/mulgara/resolver/spi/AbstractXAResource.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -1,28 +1,19 @@
/*
- * The contents of this file are subject to the Mozilla Public License
- * Version 1.1 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
+ * Copyright 2008 The Topaz Foundation
*
- * Software distributed under the License is distributed on an "AS IS"
- * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
- * the License for the specific language governing rights and limitations
- * under the License.
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
*
- * The Original Code is the Kowari Metadata Store.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * The Initial Developer of the Original Code is Plugged In Software Pty
- * Ltd (http://www.pisoftware.com, mailto:info at pisoftware.com). Portions
- * created by Plugged In Software Pty Ltd are Copyright (C) 2001,2002
- * Plugged In Software Pty Ltd. All Rights Reserved.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
*
- * Contributor(s): N/A.
- *
- * [NOTE: The text of this Exhibit A may differ slightly from the text
- * of the notices in the Source Code files of the Original Code. You
- * should use the text of this Exhibit A rather than the text found in the
- * Original Code Source Code for Your Modifications.]
- *
+ * Contributions:
*/
package org.mulgara.resolver.spi;
@@ -49,7 +40,7 @@
*
* @created 2008-02-16
* @author Ronald Tschalär
- * @licence Open Software License v3.0
+ * @licence Apache License v2.0
*/
public abstract class AbstractXAResource<R extends AbstractXAResource.RMInfo<T>,T extends AbstractXAResource.TxInfo>
extends DummyXAResource {
Modified: branches/mgr-73/src/jar/resolver-store/java/org/mulgara/resolver/store/StatementStoreResolver.java
===================================================================
--- branches/mgr-73/src/jar/resolver-store/java/org/mulgara/resolver/store/StatementStoreResolver.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/resolver-store/java/org/mulgara/resolver/store/StatementStoreResolver.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -16,7 +16,9 @@
* created by Plugged In Software Pty Ltd are Copyright (C) 2001,2002
* Plugged In Software Pty Ltd. All Rights Reserved.
*
- * Contributor(s): N/A.
+ * Contributor(s):
+ * Move to associate XAResource with Resolver Factory
+ * copyright 2008 The Topaz Foundation
*
* [NOTE: The text of this Exhibit A may differ slightly from the text
* of the notices in the Source Code files of the Original Code. You
Modified: branches/mgr-73/src/jar/resolver-store/java/org/mulgara/resolver/store/StatementStoreXAResource.java
===================================================================
--- branches/mgr-73/src/jar/resolver-store/java/org/mulgara/resolver/store/StatementStoreXAResource.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/resolver-store/java/org/mulgara/resolver/store/StatementStoreXAResource.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -17,6 +17,7 @@
* Plugged In Software Pty Ltd. All Rights Reserved.
*
* Contributor(s): N/A.
+ * Migration to AbstractXAResource copyright 2008 The Topaz Foundation
*
* [NOTE: The text of this Exhibit A may differ slightly from the text
* of the notices in the Source Code files of the Original Code. You
Modified: branches/mgr-73/src/jar/server-beep/java/org/mulgara/server/beep/BEEPSession.java
===================================================================
--- branches/mgr-73/src/jar/server-beep/java/org/mulgara/server/beep/BEEPSession.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/server-beep/java/org/mulgara/server/beep/BEEPSession.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -16,7 +16,8 @@
* created by Plugged In Software Pty Ltd are Copyright (C) 2001,2002
* Plugged In Software Pty Ltd. All Rights Reserved.
*
- * Contributor(s): N/A.
+ * Contributor(s):
+ * XAResource addition copyright 2008 The Topaz Foundation
*
* [NOTE: The text of this Exhibit A may differ slightly from the text
* of the notices in the Source Code files of the Original Code. You
Modified: branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteSession.java
===================================================================
--- branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteSession.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteSession.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -16,7 +16,8 @@
* created by Plugged In Software Pty Ltd are Copyright (C) 2001,2002
* Plugged In Software Pty Ltd. All Rights Reserved.
*
- * Contributor(s): N/A.
+ * Contributor(s):
+ * XAResource access copyright 2007 The Topaz Foundation.
*
* [NOTE: The text of this Exhibit A may differ slightly from the text
* of the notices in the Source Code files of the Original Code. You
Modified: branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteSessionWrapperSession.java
===================================================================
--- branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteSessionWrapperSession.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteSessionWrapperSession.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -16,7 +16,8 @@
* created by Plugged In Software Pty Ltd are Copyright (C) 2001,2002
* Plugged In Software Pty Ltd. All Rights Reserved.
*
- * Contributor(s): N/A.
+ * Contributor(s):
+ * XAResource access copyright 2007 The Topaz Foundation.
*
* [NOTE: The text of this Exhibit A may differ slightly from the text
* of the notices in the Source Code files of the Original Code. You
Modified: branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteXAResource.java
===================================================================
--- branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteXAResource.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteXAResource.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -1,3 +1,20 @@
+/*
+ * Copyright 2007 The Topaz Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ *
+ * Contributions:
+ */
package org.mulgara.server.rmi;
// Java 2 standard packages
@@ -17,6 +34,13 @@
* Remote XAResource.
*
*/
+/**
+ * An analogue to XAResource that is suitable for implementing as an RMI object.
+ *
+ * @author <a href="mailto:andrae at netymon.com">Andrae Muys</a>
+ * @created 2007-11-28
+ * @licence Apache License v2.0
+ */
public interface RemoteXAResource extends Remote
{
public void commit(Xid xid, boolean onePhase) throws XAException, RemoteException;
Modified: branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteXAResourceWrapperXAResource.java
===================================================================
--- branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteXAResourceWrapperXAResource.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/RemoteXAResourceWrapperXAResource.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -1,3 +1,20 @@
+/*
+ * Copyright 2007 The Topaz Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ *
+ * Contributions:
+ */
package org.mulgara.server.rmi;
// Java 2 standard packages
@@ -16,8 +33,11 @@
import org.mulgara.server.ResourceManagerInstanceAdaptor;
/**
- * Wrap a {@link RemoteXAResource} to make it into an {@link XAResource}.
+ * Wraps an RMI RemoteXAResource and presents it as a pure XAResource.
*
+ * @created 2007-11-28
+ * @author Andrae Muys
+ * @licence Apache License v2.0
*/
class RemoteXAResourceWrapperXAResource implements XAResource, ResourceManagerInstanceAdaptor {
/** logger */
Modified: branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/SessionWrapperRemoteSession.java
===================================================================
--- branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/SessionWrapperRemoteSession.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/SessionWrapperRemoteSession.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -16,7 +16,8 @@
* created by Plugged In Software Pty Ltd are Copyright (C) 2001,2002
* Plugged In Software Pty Ltd. All Rights Reserved.
*
- * Contributor(s): N/A.
+ * Contributor(s):
+ * XAResource access copyright 2007 The Topaz Foundation.
*
* [NOTE: The text of this Exhibit A may differ slightly from the text
* of the notices in the Source Code files of the Original Code. You
Modified: branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/XAResourceWrapperRemoteXAResource.java
===================================================================
--- branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/XAResourceWrapperRemoteXAResource.java 2008-03-18 04:32:14 UTC (rev 689)
+++ branches/mgr-73/src/jar/server-rmi/java/org/mulgara/server/rmi/XAResourceWrapperRemoteXAResource.java 2008-03-18 07:02:24 UTC (rev 690)
@@ -1,3 +1,20 @@
+/*
+ * Copyright 2007 The Topaz Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ *
+ * Contributions:
+ */
package org.mulgara.server.rmi;
// Java 2 standard packages
@@ -15,7 +32,11 @@
import org.mulgara.server.ResourceManagerInstanceAdaptor;
/**
- * Remote XAResource.
+ * Wraps an XAResource and makes it available as an RMI object.
+ *
+ * @created 2007-11-28
+ * @author Andrae Muys
+ * @licence Apache License v2.0
*/
public class XAResourceWrapperRemoteXAResource
extends UnicastRemoteObject implements RemoteXAResource {
More information about the Mulgara-svn
mailing list