Skip to content

Commit

Permalink
Initial commit to continue on another machine
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Millidge <steve.millidge@payara.fish>
  • Loading branch information
smillidge committed Jul 4, 2019
1 parent c646067 commit 7eeb13a
Show file tree
Hide file tree
Showing 10 changed files with 93 additions and 18 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
@@ -1,10 +1,10 @@
# Contributing to Eclipse Project for JCA
# Contributing to Jakarta Connectors&trade;

Thanks for your interest in this project.

## Project description

The Jakarta EE Connector Architecture defines a standard architecture for
The Jakarta Connectors specification defines a standard architecture for
Jakarta EE application components to connect to Enterprise Information Systems.

* https://projects.eclipse.org/projects/ee4j.jca
Expand Down
6 changes: 3 additions & 3 deletions NOTICE.md
@@ -1,12 +1,12 @@
# Notices for Eclipse Project for JCA
# Notices for Jakarta Connectors&trade;

This content is produced and maintained by the Eclipse Project for JCA project.
This content is produced and maintained by the Jakarta Connectors project.

* Project home: https://projects.eclipse.org/projects/ee4j.jca

## Trademarks

Eclipse Project for JCA is a trademark of the Eclipse Foundation.
Jakarta Connectors is a trademark of the Eclipse Foundation.

## Copyright

Expand Down
5 changes: 5 additions & 0 deletions README.md
@@ -0,0 +1,5 @@
#Jakarta Connectors&trade;
The Jakarta Connectors specification defines a standard architecture for
Jakarta EE application components to connect to Enterprise Information Systems.

* https://projects.eclipse.org/projects/ee4j.jca
8 changes: 4 additions & 4 deletions pom.xml
Expand Up @@ -38,7 +38,7 @@
<findbugs.threshold>Low</findbugs.threshold>
</properties>
<name>${extension.name} API</name>
<description>Eclipse Project for JCA</description>
<description>Jakarta Connectors</description>

<url>https://github.com/eclipse-ee4j/jca-api</url>

Expand Down Expand Up @@ -145,9 +145,9 @@
<Implementation-Version>${spec.implementation.version}</Implementation-Version>
<Specification-Version>${spec.specification.version}</Specification-Version>
<Bundle-Description>
Java(TM) EE Connector Architecture ${spec.version} API Design Specification
Jakarta Connectors ${spec.version} Specification
</Bundle-Description>
<Specification-Vendor>Eclipse Project for JCA</Specification-Vendor>
<Specification-Vendor>Jakarta Connectors</Specification-Vendor>
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
<Implementation-Vendor-Id>org.glassfish</Implementation-Vendor-Id>
<Import-Package>javax.transaction;version="[1.3,2.0)",*</Import-Package>
Expand Down Expand Up @@ -228,7 +228,7 @@
<configuration>
<groups>
<group>
<title>Java (TM) EE Connector Architecture API Documentation</title>
<title>Jakarta Connectors(tm) API Documentation</title>
<packages>javax.resource</packages>
</group>
</groups>
Expand Down
72 changes: 72 additions & 0 deletions src/main/doc-files/speclicense.html
@@ -0,0 +1,72 @@
<html>
<head>
<title>Eclipse Foundation Specification License - v1.0</title>
</head>
<body>
<h1>Eclipse Foundation Specification License - v1.0</h1>
<p>By using and/or copying this document, or the Eclipse Foundation
document from which this statement is linked, you (the licensee) agree
that you have read, understood, and will comply with the following
terms and conditions:</p>

<p>Permission to copy, and distribute the contents of this document, or
the Eclipse Foundation document from which this statement is linked, in
any medium for any purpose and without fee or royalty is hereby
granted, provided that you include the following on ALL copies of the
document, or portions thereof, that you use:</p>

<ul>
<li> link or URL to the original Eclipse Foundation document.</li>
<li>All existing copyright notices, or if one does not exist, a notice
(hypertext is preferred, but a textual representation is permitted)
of the form: &quot;Copyright &copy; [$date-of-document]
&ldquo;Eclipse Foundation, Inc. &lt;&lt;url to this license&gt;&gt;
&quot;
</li>
</ul>

<p>Inclusion of the full text of this NOTICE must be provided. We
request that authorship attribution be provided in any software,
documents, or other items or products that you create pursuant to the
implementation of the contents of this document, or any portion
thereof.</p>

<p>No right to create modifications or derivatives of Eclipse Foundation
documents is granted pursuant to this license, except anyone may
prepare and distribute derivative works and portions of this document
in software that implements the specification, in supporting materials
accompanying such software, and in documentation of such software,
PROVIDED that all such works include the notice below. HOWEVER, the
publication of derivative works of this document for use as a technical
specification is expressly prohibited.</p>

<p>The notice is:</p>

<p>&quot;Copyright &copy; 2018 Eclipse Foundation. This software or
document includes material copied from or derived from [title and URI
of the Eclipse Foundation specification document].&quot;</p>

<h2>Disclaimers</h2>

<p>THIS DOCUMENT IS PROVIDED &quot;AS IS,&quot; AND THE COPYRIGHT
HOLDERS AND THE ECLIPSE FOUNDATION MAKE NO REPRESENTATIONS OR
WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE
SUITABLE FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS
WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR
OTHER RIGHTS.</p>

<p>THE COPYRIGHT HOLDERS AND THE ECLIPSE FOUNDATION WILL NOT BE LIABLE
FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT
OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE
CONTENTS THEREOF.</p>

<p>The name and trademarks of the copyright holders or the Eclipse
Foundation may NOT be used in advertising or publicity pertaining to
this document or its contents without specific, written prior
permission. Title to copyright in this document will at all times
remain with copyright holders.</p>

</body>
</html>
2 changes: 1 addition & 1 deletion src/main/java/javax/resource/ResourceException.java
Expand Up @@ -18,7 +18,7 @@

/**
* This is the root interface of the exception hierarchy defined
* for the Connector architecture.
* for Jakarta Connectors&trade;.
*
* The ResourceException provides the following information:
* <UL>
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/javax/resource/cci/LocalTransaction.java
Expand Up @@ -53,7 +53,7 @@ public interface LocalTransaction {
* <LI>Resource adapter internal or EIS-specific
* error
* <LI>Connection is already participating in a
* local or JTA transaction
* local or Jakarta Transactions&trade; transaction
* </UL>
**/
public
Expand All @@ -71,7 +71,7 @@ public interface LocalTransaction {
* <LI> Violation of integrity constraints, deadlock
* detection, communication failure during
* transaction completion, or any retry requirement
* <LI> Connection is participating in an active JTA
* <LI> Connection is participating in an active Jakarta Transactions
* transaction
* <LI> Invalid transaction context; commit
* operation invoked without an active
Expand All @@ -88,7 +88,7 @@ public interface LocalTransaction {
* error cases are:
* <UL>
* <LI> Resource adapter internal or EIS-specific error
* <LI> Connection is participating in an active JTA
* <LI> Connection is participating in an active Jakarta Transactions
* transaction
* <LI> Invalid transaction context; rollback
* operation invoked without an active
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/javax/resource/package.html
Expand Up @@ -20,7 +20,6 @@

</head>
<body>
The javax.resource package is the top-level package for the Java EE
Connector API specification.
The javax.resource package is the top-level package for the Jakarta Connectors&trade; specification.
</body>
</html>
2 changes: 1 addition & 1 deletion src/main/java/javax/resource/spi/package.html
Expand Up @@ -21,6 +21,6 @@
</head>
<body>
The javax.resource.spi package contains APIs for the system
contracts defined in the Java EE Connector Architecture specification.
contracts defined in the Jakarta Connectors specification.
</body>
</html>
3 changes: 1 addition & 2 deletions src/main/java/package.html
Expand Up @@ -20,7 +20,6 @@

</head>
<body>
The javax.resource package is the top-level package for the Java EE
Connector API specification.
The javax.resource package is the top-level package for the Jakarta Connectors&trade; specification.
</body>
</html>

0 comments on commit 7eeb13a

Please sign in to comment.