libgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/0000775000175000017500000000000011330515676021632 5ustar moellermoellerlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/0000775000175000017500000000000011330515676022421 5ustar moellermoellerlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/0000775000175000017500000000000011330515676023400 5ustar moellermoellerlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/0000775000175000017500000000000011330515676024321 5ustar moellermoellerlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/0000775000175000017500000000000011330515676025432 5ustar moellermoellerlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/0000775000175000017500000000000011330515676027261 5ustar moellermoellerlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/spi/0000775000175000017500000000000011330515676030054 5ustar moellermoellerlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/spi/work/0000775000175000017500000000000011330515676031036 5ustar moellermoeller././@LongLink0000000000000000000000000000016100000000000011563 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/spi/work/WorkExceptionTest.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/spi/work/WorkExcept0000664000175000017500000000301010517560657033053 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; import junit.framework.TestCase; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class WorkExceptionTest extends TestCase { public void testGetMessage() { WorkException workException = new WorkException("foo", "bar"); assertEquals("errorCode: bar", workException.getMessage()); workException = new WorkException("foo", new WorkException("bar")); assertEquals("errorCode: null", workException.getMessage()); } } ././@LongLink0000000000000000000000000000015500000000000011566 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/spi/work/WorkEventTest.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/spi/work/WorkEventT0000664000175000017500000000312510517560657033037 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; import junit.framework.TestCase; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class WorkEventTest extends TestCase { public void testDefaultForWorkDuration() { WorkEvent event = new WorkEvent(this, WorkEvent.WORK_ACCEPTED, null, null); assertEquals(-1, event.getStartDuration()); } public void testUnknownType() { try { WorkEvent event = new WorkEvent(this, -100, null, null); } catch(Throwable t) { fail("Didn't not expect a Throwable"); } } } ././@LongLink0000000000000000000000000000016400000000000011566 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/spi/work/ExecutionContextTest.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/spi/work/ExecutionC0000664000175000017500000000420610517560657033036 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; import javax.resource.NotSupportedException; import junit.framework.TestCase; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class ExecutionContextTest extends TestCase { public void testConstructor() { ExecutionContext context = new ExecutionContext(); assertNull(context.getXid()); assertEquals(-1, context.getTransactionTimeout()); } public void testNegativeTimeout() { ExecutionContext context = new ExecutionContext(); try { context.setTransactionTimeout(-1); } catch (NotSupportedException nse) { assertEquals("Illegal timeout value", nse.getMessage()); return; } fail("Expected NotSupportedException."); } public void testZeroTimeout() { ExecutionContext context = new ExecutionContext(); try { context.setTransactionTimeout(0); } catch (NotSupportedException nse) { assertEquals("Illegal timeout value", nse.getMessage()); return; } fail("Expected NotSupportedException."); } } libgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/spi/security/0000775000175000017500000000000011330515676031723 5ustar moellermoeller././@LongLink0000000000000000000000000000017200000000000011565 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/spi/security/PasswordCredentialTest.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/spi/security/Passwo0000664000175000017500000000343310517560657033132 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.security; import junit.framework.TestCase; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class PasswordCredentialTest extends TestCase { public void testConstructor() { char[] secret = new char[] {'S','e','c','r','e','t'}; PasswordCredential credential = new PasswordCredential("blah", secret); assertNotSame("Password shoud be cloned.", secret, credential.getPassword()); } public void testGetPassword() { char[] secret = new char[] {'S','e','c','r','e','t'}; PasswordCredential credential = new PasswordCredential("blah", secret); assertNotSame("Password should be cloned.", credential.getPassword(), credential.getPassword()); } } ././@LongLink0000000000000000000000000000015400000000000011565 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/ResourceExceptionTest.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/test/java/javax/resource/ResourceExceptionTe0000664000175000017500000000356410536472360033152 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource; import junit.framework.TestCase; /** * @version $Rev: 484948 $ $Date: 2006-12-09 09:33:52 +0100 (Sat, 09 Dec 2006) $ */ public class ResourceExceptionTest extends TestCase { public void testGetErrorCode() { ResourceException exception = new ResourceException("unlucky", "13"); assertEquals("unlucky", exception.getMessage()); assertEquals("13", exception.getErrorCode()); } public void testGetErrorCodeWithoutSettingIt() { ResourceException exception = new ResourceException(); assertNull(exception.getErrorCode()); } public void testLinkedException() { ResourceException root = new ResourceException("catastrophy"); ResourceException exception = new ResourceException("problem"); exception.setLinkedException(root); assertSame(root, exception.getLinkedException()); } } libgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/0000775000175000017500000000000011330515676023345 5ustar moellermoellerlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/0000775000175000017500000000000011330515676024266 5ustar moellermoellerlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/0000775000175000017500000000000011330515676025377 5ustar moellermoellerlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/0000775000175000017500000000000011330515676027226 5ustar moellermoellerlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/0000775000175000017500000000000011330515676030021 5ustar moellermoeller././@LongLink0000000000000000000000000000016000000000000011562 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/ConnectionRequestInfo.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/ConnectionReque0000664000175000017500000000232610517560657033055 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public interface ConnectionRequestInfo { public boolean equals(Object other); public int hashCode(); }././@LongLink0000000000000000000000000000015500000000000011566 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/EISSystemException.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/EISSystemExcept0000664000175000017500000000317010517560657032750 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi; import javax.resource.ResourceException; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class EISSystemException extends ResourceException { public EISSystemException() { super(); } public EISSystemException(String message) { super(message); } public EISSystemException(Throwable cause) { super(cause); } public EISSystemException(String message, Throwable cause) { super(message, cause); } public EISSystemException(String message, String errorCode) { super(message, errorCode); } } ././@LongLink0000000000000000000000000000015300000000000011564 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/LocalTransaction.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/LocalTransactio0000664000175000017500000000252210517560657033034 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi; import javax.resource.ResourceException; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public interface LocalTransaction { public void begin() throws ResourceException; public void commit() throws ResourceException; public void rollback() throws ResourceException; }././@LongLink0000000000000000000000000000015200000000000011563 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/ConnectionEvent.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/ConnectionEvent0000664000175000017500000000422010517560657033050 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi; import java.util.EventObject; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class ConnectionEvent extends EventObject { public static final int CONNECTION_CLOSED = 1; public static final int LOCAL_TRANSACTION_STARTED = 2; public static final int LOCAL_TRANSACTION_COMMITTED = 3; public static final int LOCAL_TRANSACTION_ROLLEDBACK = 4; public static final int CONNECTION_ERROR_OCCURRED = 5; protected int id; private Exception exception; private Object connectionHandle; public ConnectionEvent(ManagedConnection source, int eid) { super(source); this.id = eid; } public ConnectionEvent(ManagedConnection source, int eid, Exception exception) { this(source, eid); this.exception = exception; } public Object getConnectionHandle() { return connectionHandle; } public void setConnectionHandle(Object connectionHandle) { this.connectionHandle = connectionHandle; } public Exception getException() { return exception; } public int getId() { return id; } }././@LongLink0000000000000000000000000000016300000000000011565 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/ManagedConnectionFactory.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/ManagedConnecti0000664000175000017500000000373610517560657033001 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi; import java.io.PrintWriter; import java.io.Serializable; import java.util.Set; import javax.resource.ResourceException; import javax.security.auth.Subject; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public interface ManagedConnectionFactory extends Serializable { public Object createConnectionFactory(ConnectionManager cxManager) throws ResourceException; public Object createConnectionFactory() throws ResourceException; public ManagedConnection createManagedConnection(Subject subject, ConnectionRequestInfo cxRequestInfo) throws ResourceException; public ManagedConnection matchManagedConnections(Set connectionSet, Subject subject, ConnectionRequestInfo cxRequestInfo) throws ResourceException; public void setLogWriter(PrintWriter out) throws ResourceException; public PrintWriter getLogWriter() throws ResourceException; public int hashCode(); public boolean equals(Object other); }././@LongLink0000000000000000000000000000015700000000000011570 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/UnavailableException.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/UnavailableExce0000664000175000017500000000320310517560657032777 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi; import javax.resource.ResourceException; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class UnavailableException extends ResourceException { public UnavailableException() { super(); } public UnavailableException(String message) { super(message); } public UnavailableException(Throwable cause) { super(cause); } public UnavailableException(String message, Throwable cause) { super(message, cause); } public UnavailableException(String message, String errorCode) { super(message, errorCode); } }libgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/endpoint/0000775000175000017500000000000011330515676031641 5ustar moellermoeller././@LongLink0000000000000000000000000000016300000000000011565 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/endpoint/MessageEndpoint.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/endpoint/Messag0000664000175000017500000000262610517560657033016 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.endpoint; import java.lang.reflect.Method; import javax.resource.ResourceException; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public interface MessageEndpoint { public void beforeDelivery(Method method) throws NoSuchMethodException, ResourceException; public void afterDelivery() throws ResourceException; public void release(); } ././@LongLink0000000000000000000000000000017200000000000011565 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/endpoint/MessageEndpointFactory.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/endpoint/Messag0000664000175000017500000000271110517560657033011 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.endpoint; import java.lang.reflect.Method; import javax.resource.spi.UnavailableException; import javax.transaction.xa.XAResource; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public interface MessageEndpointFactory { public MessageEndpoint createEndpoint(XAResource xaResource) throws UnavailableException; public boolean isDeliveryTransacted(Method method) throws NoSuchMethodException; }libgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/0000775000175000017500000000000011330515676031003 5ustar moellermoeller././@LongLink0000000000000000000000000000015500000000000011566 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkException.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkExcept0000664000175000017500000000371110517560657033030 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; import javax.resource.ResourceException; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class WorkException extends ResourceException { public static final String INTERNAL = "-1"; public static final String UNDEFINED = "0"; public static final String START_TIMED_OUT = "1"; public static final String TX_CONCURRENT_WORK_DISALLOWED = "2"; public static final String TX_RECREATE_FAILED = "3"; public WorkException() { super(); } public WorkException(String message) { super(message); } public WorkException(Throwable cause) { super(cause); } public WorkException(String message, Throwable cause) { super(message, cause); } public WorkException(String message, String errorCode) { super(message, errorCode); } public String getMessage() { return "errorCode: " + getErrorCode(); } }libgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/Work.java0000664000175000017500000000226210517560657032577 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public interface Work extends Runnable { public void release(); } ././@LongLink0000000000000000000000000000015300000000000011564 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkAdapter.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkAdapte0000664000175000017500000000261610517560657033001 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class WorkAdapter implements WorkListener { public WorkAdapter() { } public void workAccepted(WorkEvent e) { } public void workRejected(WorkEvent e) { } public void workStarted(WorkEvent e) { } public void workCompleted(WorkEvent e) { } } ././@LongLink0000000000000000000000000000015100000000000011562 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkEvent.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkEvent.0000664000175000017500000000415410517560657032741 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; import java.util.EventObject; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class WorkEvent extends EventObject { public static final int WORK_ACCEPTED = 1; public static final int WORK_REJECTED = 2; public static final int WORK_STARTED = 3; public static final int WORK_COMPLETED = 4; private int type; private Work work; private WorkException exception; private long startDuration = -1; public WorkEvent(Object source, int type, Work work, WorkException exc) { super(source); this.type = type; this.work = work; this.exception = exc; } public WorkEvent(Object source, int type, Work work, WorkException exc, long startDuration) { this(source, type, work, exc); this.startDuration = startDuration; } public int getType() { return type; } public Work getWork() { return work; } public long getStartDuration() { return startDuration; } public WorkException getException() { return exception; } }././@LongLink0000000000000000000000000000015400000000000011565 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkListener.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkListen0000664000175000017500000000256310517560657033042 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; import java.util.EventListener; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public interface WorkListener extends EventListener { public void workAccepted(WorkEvent e); public void workRejected(WorkEvent e); public void workStarted(WorkEvent e); public void workCompleted(WorkEvent e); }././@LongLink0000000000000000000000000000016500000000000011567 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkRejectedException.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkReject0000664000175000017500000000314110517560657033011 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class WorkRejectedException extends WorkException { public WorkRejectedException() { super(); } public WorkRejectedException(String message) { super(message); } public WorkRejectedException(Throwable cause) { super(cause); } public WorkRejectedException(String message, Throwable cause) { super(message, cause); } public WorkRejectedException(String message, String errorCode) { super(message, errorCode); } } ././@LongLink0000000000000000000000000000016000000000000011562 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/ExecutionContext.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/ExecutionC0000664000175000017500000000333210517560657033002 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; import javax.resource.NotSupportedException; import javax.transaction.xa.Xid; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class ExecutionContext { private Xid xid; private long timeout = -1; public ExecutionContext() { } public void setXid(Xid xid) { this.xid = xid; } public Xid getXid() { return xid; } public void setTransactionTimeout(long timeout) throws NotSupportedException { if (timeout<=0) { throw new NotSupportedException("Illegal timeout value"); } this.timeout = timeout; } public long getTransactionTimeout() { return timeout; } }././@LongLink0000000000000000000000000000015300000000000011564 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkManager.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkManage0000664000175000017500000000355210517560657032773 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public interface WorkManager { public static final long IMMEDIATE = 0L; public static final long INDEFINITE = Long.MAX_VALUE; public static final long UNKNOWN = -1; public void doWork(Work work) throws WorkException; public void doWork(Work work, long startTimeout, ExecutionContext execContext, WorkListener workListener) throws WorkException; public long startWork(Work work) throws WorkException; public long startWork(Work work, long startTimeout, ExecutionContext execContext, WorkListener workListener) throws WorkException; public void scheduleWork(Work work) throws WorkException; public void scheduleWork(Work work, long startTimeout, ExecutionContext execContext, WorkListener workListener) throws WorkException; }././@LongLink0000000000000000000000000000016600000000000011570 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkCompletedException.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/work/WorkComple0000664000175000017500000000314710517560657033022 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.work; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public class WorkCompletedException extends WorkException { public WorkCompletedException() { super(); } public WorkCompletedException(String message) { super(message); } public WorkCompletedException(Throwable cause) { super(cause); } public WorkCompletedException(String message, Throwable cause) { super(message, cause); } public WorkCompletedException(String message, String errorCode) { super(message, errorCode); } } libgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/security/0000775000175000017500000000000011330515676031670 5ustar moellermoeller././@LongLink0000000000000000000000000000016600000000000011570 Lustar rootrootlibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/security/PasswordCredential.javalibgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/src/main/java/javax/resource/spi/security/Passwo0000664000175000017500000000471610517560657033104 0ustar moellermoeller/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ // // This source code implements specifications defined by the Java // Community Process. In order to remain compliant with the specification // DO NOT add / change / or delete method signatures! // package javax.resource.spi.security; import java.io.Serializable; import java.util.Arrays; import javax.resource.spi.ManagedConnectionFactory; /** * @version $Rev: 467553 $ $Date: 2006-10-25 06:01:51 +0200 (Wed, 25 Oct 2006) $ */ public final class PasswordCredential implements Serializable { private String userName; private char[] password; private ManagedConnectionFactory mcf; public PasswordCredential(String userName, char[] password) { this.userName = userName; this.password = (char[]) password.clone(); } public String getUserName() { return userName; } public char[] getPassword() { return (char[]) password.clone(); } public ManagedConnectionFactory getManagedConnectionFactory() { return mcf; } public void setManagedConnectionFactory(ManagedConnectionFactory mcf) { this.mcf = mcf; } public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof PasswordCredential)) return false; final PasswordCredential credential = (PasswordCredential) o; if (!Arrays.equals(password, credential.password)) return false; if (!userName.equals(credential.userName)) return false; return true; } public int hashCode() { //@todo fix this int result = userName.hashCode(); for (int i=0; i ${parentProject} ${modules} ${reports} libgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/LICENSE.txt0000664000175000017500000002613710474162255023465 0ustar moellermoeller Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] 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. libgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/NOTICE.txt0000664000175000017500000000025310750440550023345 0ustar moellermoellerApache Geronimo Copyright 2003-2008 The Apache Software Foundation This product includes software developed by The Apache Software Foundation (http://www.apache.org/). libgeronimo-j2ee-connector-1.5-spec-java-2.0.0.orig/pom.xml0000664000175000017500000000460310750573316023152 0ustar moellermoeller 4.0.0 org.apache.geronimo.specs specs 1.4 ../pom.xml geronimo-j2ee-connector_1.5_spec jar J2EE Connector 1.5 2.0.0 javax.resource* 1.5 org.apache.geronimo.specs geronimo-jta_1.1_spec 1.1.1 provided scm:svn:https://svn.apache.org/repos/asf/geronimo/specs/tags/geronimo-j2ee-connector_1.5_spec-2.0.0 scm:svn:https://svn.apache.org/repos/asf/geronimo/specs/tags/geronimo-j2ee-connector_1.5_spec-2.0.0 scm:svn:https://svn.apache.org/repos/asf/geronimo/specs/tags/geronimo-j2ee-connector_1.5_spec-2.0.0