Skip to content

Commit

Permalink
Update to use Jakarta names
Browse files Browse the repository at this point in the history
Signed-off-by: Scott M Stark <starksm64@gmail.com>
  • Loading branch information
starksm64 committed Jul 14, 2019
1 parent 19478ae commit aa9384b
Show file tree
Hide file tree
Showing 49 changed files with 429 additions and 429 deletions.
6 changes: 3 additions & 3 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<findbugs.threshold>Low</findbugs.threshold>
</properties>
<name>jaxr-api</name>
<description>JAX R API: Eclipse Project for Stable EE4J APIs</description>
<description>Jakarta XML Registries: Eclipse Project for Stable EE4J APIs</description>
<inceptionYear>2013</inceptionYear>
<url>https://github.com/eclipse-ee4jjaxr-api</url>

Expand Down Expand Up @@ -79,7 +79,7 @@

<mailingLists>
<mailingList>
<name>JAXR mailing list</name>
<name>Jakarta XML Registries mailing list</name>
<post>jakartaee-stable-dev@eclipse.org</post>
<subscribe>https://dev.eclipse.org/mailman/listinfo/jakartaee-stable-dev</subscribe>
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/jakartaee-stable-dev</unsubscribe>
Expand Down Expand Up @@ -239,7 +239,7 @@
<docfilessubdirs>true</docfilessubdirs>
<groups>
<group>
<title>JAXR API Documentation</title>
<title>Jakarta XML Registries API Documentation</title>
<packages>javax.xml.registry</packages>
</group>
</groups>
Expand Down
6 changes: 3 additions & 3 deletions api/src/main/java/javax/xml/registry/BulkResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public interface BulkResponse extends JAXRResponse {
*
* @see javax.xml.registry.infomodel.RegistryObject
* @return Collection of RegistryObject instances. The Collection may be empty but not null.
* @throws JAXRException If the JAXR provider encounters an internal error
* @throws JAXRException If the Jakarta XML Registries provider encounters an internal error
*
*/
Collection getCollection() throws JAXRException;
Expand All @@ -54,7 +54,7 @@ public interface BulkResponse extends JAXRResponse {
*
* @see RegistryException
* @return Collection of RegistryException instances. Return null if result is available and there is no RegistryException.
* @throws JAXRException If the JAXR provider encounters an internal error
* @throws JAXRException If the Jakarta XML Registries provider encounters an internal error
*
*/
Collection getExceptions() throws JAXRException;
Expand All @@ -65,7 +65,7 @@ public interface BulkResponse extends JAXRResponse {
* <DL><DT><B>Capability Level: 0 </B></DL>
*
* @return <code>true</code> if the response is partial; <code>false</code> otherwise
* @throws JAXRException If the JAXR provider encounters an internal error
* @throws JAXRException If the Jakarta XML Registries provider encounters an internal error
*
*/
public boolean isPartialResponse() throws JAXRException;
Expand Down
32 changes: 16 additions & 16 deletions api/src/main/java/javax/xml/registry/BusinessLifeCycleManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* saved successfully and any SaveException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse saveOrganizations(Collection organizations) throws JAXRException;

Expand All @@ -64,7 +64,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* saved successfully and any SaveException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse saveServices(Collection services) throws JAXRException;

Expand All @@ -84,7 +84,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* saved successfully and any SaveException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse saveServiceBindings(Collection bindings) throws JAXRException;

Expand All @@ -104,7 +104,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* saved successfully and any SaveException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse saveConcepts(Collection concepts) throws JAXRException;

Expand All @@ -124,7 +124,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* saved successfully and any SaveException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse saveClassificationSchemes(Collection schemes) throws JAXRException;

Expand All @@ -147,7 +147,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* saved successfully and any SaveException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse saveAssociations(Collection associations, boolean replace) throws JAXRException;

Expand All @@ -164,7 +164,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* deleted successfully and any DeleteException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse deleteOrganizations(Collection organizationKeys) throws JAXRException;

Expand All @@ -180,7 +180,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* deleted successfully and any DeleteException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse deleteServices(Collection serviceKeys) throws JAXRException;

Expand All @@ -196,7 +196,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* deleted successfully and any DeleteException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse deleteServiceBindings(Collection bindingKeys) throws JAXRException;

Expand All @@ -212,7 +212,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* deleted successfully and any DeleteException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse deleteConcepts(Collection conceptKeys) throws JAXRException;

Expand All @@ -228,7 +228,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* deleted successfully and any DeleteException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse deleteClassificationSchemes(Collection schemeKeys) throws JAXRException;

Expand All @@ -244,7 +244,7 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* @return a BulkResponse containing the Collection of keys for those objects that were
* deleted successfully and any DeleteException that was encountered in case of partial commit
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse deleteAssociations(Collection associationKeys) throws JAXRException;

Expand All @@ -262,13 +262,13 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* </ul>
* <p>
* The details of confirming an extramural Association are registry-specific. For UDDI and ebXML registries,
* the registry-specific details are described in the JAXR specification.
* the registry-specific details are described in the Jakarta XML Registries specification.
*
* <DL><DT><B>Capability Level: 0 </B></DL>
*
* @param assoc the Association object to be confirmed
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
* @throws InvalidRequestException if the User is not the owner of the
* sourceObject or the targetObject
*/
Expand All @@ -286,13 +286,13 @@ public interface BusinessLifeCycleManager extends LifeCycleManager {
* </ul>
* <p>
* The details of unconfirming an extramural Association are registry-specific. For UDDI and ebXML registries,
* the registry-specific details are described in the JAXR specification.
* the registry-specific details are described in the Jakarta XML Registries specification.
*
* <DL><DT><B>Capability Level: 0 </B></DL>
*
* @param assoc the Association object to be unconfirmed
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
* @throws InvalidRequestException if the User is not the owner of the
* sourceObject or the targetObject
*/
Expand Down
22 changes: 11 additions & 11 deletions api/src/main/java/javax/xml/registry/BusinessQueryManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public interface BusinessQueryManager extends QueryManager {
*
* @return a BulkResponse containing a Collection of Associations
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse findAssociations(
Collection findQualifiers,
Expand Down Expand Up @@ -77,7 +77,7 @@ BulkResponse findAssociations(
*
* @return a BulkResponse containing a Collection of Associations
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse findCallerAssociations(
Collection findQualifiers,
Expand Down Expand Up @@ -138,7 +138,7 @@ BulkResponse findCallerAssociations(
*
* @return a BulkResponse containing a Collection of Organizations
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse findOrganizations(
Collection findQualifiers,
Expand Down Expand Up @@ -187,7 +187,7 @@ BulkResponse findOrganizations(
*
* @return a BulkResponse containing a Collection of Services
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse findServices(Key orgKey,
Collection findQualifiers,
Expand Down Expand Up @@ -229,7 +229,7 @@ BulkResponse findServices(Key orgKey,
*
* @return a BulkResponse containing a Collection of ServiceBindings
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse findServiceBindings(
Key serviceKey,
Expand Down Expand Up @@ -271,7 +271,7 @@ BulkResponse findServiceBindings(
*
* @return a BulkResponse containing a Collection of ClassificationSchemes
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse findClassificationSchemes(
Collection findQualifiers,
Expand All @@ -297,7 +297,7 @@ BulkResponse findClassificationSchemes(
* @return the ClassificationScheme matching the namePattern, or null
* if no match is found.
*
* @throws JAXRException if the JAXR provider encounters an internal
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal
* error. Throws an InvalidRequestException if multiple matches are
* found.
*
Expand Down Expand Up @@ -348,7 +348,7 @@ BulkResponse findClassificationSchemes(
*
* @return a BulkResponse containing a Collection of Concepts
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse findConcepts(
Collection findQualifiers,
Expand All @@ -366,11 +366,11 @@ BulkResponse findConcepts(
*
* <DL><DT><B>Capability Level: 0 </B></DL>
*
* @param path a canonical path expression, as defined in the JAXR specification, that identifies the Concept.
* @param path a canonical path expression, as defined in the Jakarta XML Registries specification, that identifies the Concept.
*
* @return the Concept found, or null if no match is found
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
Concept findConceptByPath(String path) throws JAXRException;

Expand Down Expand Up @@ -408,7 +408,7 @@ BulkResponse findConcepts(
*
* @return a BulkResponse containing a Collection of RegistryPackages
*
* @throws JAXRException if the JAXR provider encounters an internal error
* @throws JAXRException if the Jakarta XML Registries provider encounters an internal error
*/
BulkResponse findRegistryPackages(
Collection findQualifiers,
Expand Down
10 changes: 5 additions & 5 deletions api/src/main/java/javax/xml/registry/CapabilityProfile.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,30 +17,30 @@
package javax.xml.registry;

/**
* Provides information about the capabilities of a JAXR provider.
* Provides information about the capabilities of a Jakarta XML Registries provider.
*
* @author Farrukh S. Najmi
*/
public interface CapabilityProfile {

/**
* Gets the JAXR specification version supported by the JAXR provider.
* Gets the Jakarta XML Registries specification version supported by the Jakarta XML Registries provider.
*
* <DL><DT><B>Capability Level: 0 </B></DL>
*
* @return the specification version
* @throws JAXRException If the JAXR provider encounters an internal error
* @throws JAXRException If the Jakarta XML Registries provider encounters an internal error
*
*/
public String getVersion() throws JAXRException;

/**
* Gets the capability level supported by the JAXR provider.
* Gets the capability level supported by the Jakarta XML Registries provider.
*
* <DL><DT><B>Capability Level: 0 </B></DL>
*
* @return the capability level
* @throws JAXRException If the JAXR provider encounters an internal error
* @throws JAXRException If the Jakarta XML Registries provider encounters an internal error
*
*/
public int getCapabilityLevel() throws JAXRException;
Expand Down

0 comments on commit aa9384b

Please sign in to comment.