You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/08/27 02:18:32 UTC

svn commit: r437256 [9/23] - in /geronimo/specs/trunk: ./ geronimo-activation_1.0.2_spec/ geronimo-activation_1.0.2_spec/src/main/java/javax/activation/ geronimo-activation_1.0.2_spec/src/test/java/javax/activation/ geronimo-commonj_1.1_spec/ geronimo-...

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/JAXRResponse.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/JAXRResponse.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/JAXRResponse.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/JAXRResponse.java Sat Aug 26 17:17:49 2006
@@ -1,39 +1,39 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface JAXRResponse {
-    public static int STATUS_SUCCESS = 0;
-    public static int STATUS_WARNING = 1;
-    public static int STATUS_FAILURE = 2;
-    public static int STATUS_UNAVAILABLE = 3;
-
-    String getRequestId() throws JAXRException;
-
-    int getStatus() throws JAXRException;
-
-    boolean isAvailable() throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface JAXRResponse {
+    public static int STATUS_SUCCESS = 0;
+    public static int STATUS_WARNING = 1;
+    public static int STATUS_FAILURE = 2;
+    public static int STATUS_UNAVAILABLE = 3;
+
+    String getRequestId() throws JAXRException;
+
+    int getStatus() throws JAXRException;
+
+    boolean isAvailable() throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/JAXRResponse.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/JAXRResponse.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/JAXRResponse.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/LifeCycleManager.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/LifeCycleManager.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/LifeCycleManager.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/LifeCycleManager.java Sat Aug 26 17:17:49 2006
@@ -1,167 +1,167 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry;
-
-import java.util.Collection;
-import java.util.Locale;
-import javax.activation.DataHandler;
-import javax.xml.registry.infomodel.Association;
-import javax.xml.registry.infomodel.Classification;
-import javax.xml.registry.infomodel.ClassificationScheme;
-import javax.xml.registry.infomodel.Concept;
-import javax.xml.registry.infomodel.EmailAddress;
-import javax.xml.registry.infomodel.ExternalIdentifier;
-import javax.xml.registry.infomodel.ExternalLink;
-import javax.xml.registry.infomodel.ExtrinsicObject;
-import javax.xml.registry.infomodel.InternationalString;
-import javax.xml.registry.infomodel.Key;
-import javax.xml.registry.infomodel.LocalizedString;
-import javax.xml.registry.infomodel.Organization;
-import javax.xml.registry.infomodel.PersonName;
-import javax.xml.registry.infomodel.PostalAddress;
-import javax.xml.registry.infomodel.RegistryObject;
-import javax.xml.registry.infomodel.RegistryPackage;
-import javax.xml.registry.infomodel.Service;
-import javax.xml.registry.infomodel.ServiceBinding;
-import javax.xml.registry.infomodel.Slot;
-import javax.xml.registry.infomodel.SpecificationLink;
-import javax.xml.registry.infomodel.TelephoneNumber;
-import javax.xml.registry.infomodel.User;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface LifeCycleManager {
-    public static final String ASSOCIATION = "Association";
-    public static final String AUDITABLE_EVENT = "AuditableEvent";
-    public static final String CLASSIFICATION = "Classification";
-    public static final String CLASSIFICATION_SCHEME = "ClassificationScheme";
-    public static final String CONCEPT = "Concept";
-    public static final String EMAIL_ADDRESS = "EmailAddress";
-    public static final String EXTERNAL_IDENTIFIER = "ExternalIdentifier";
-    public static final String EXTERNAL_LINK = "ExternalLink";
-    public static final String EXTRINSIC_OBJECT = "ExtrinsicObject";
-    public static final String INTERNATIONAL_STRING = "InternationalString";
-    public static final String KEY = "Key";
-    public static final String LOCALIZED_STRING = "LocalizedString";
-    public static final String ORGANIZATION = "Organization";
-    public static final String PERSON_NAME = "PersonName";
-    public static final String POSTAL_ADDRESS = "PostalAddress";
-    public static final String REGISTRY_ENTRY = "RegistryEntry";
-    public static final String REGISTRY_PACKAGE = "RegistryPackage";
-    public static final String SERVICE = "Service";
-    public static final String SERVICE_BINDING = "ServiceBinding";
-    public static final String SLOT = "Slot";
-    public static final String SPECIFICATION_LINK = "SpecificationLink";
-    public static final String TELEPHONE_NUMBER = "TelephoneNumber";
-    public static final String USER = "User";
-    public static final String VERSIONABLE = "Versionable";
-
-    Association createAssociation(RegistryObject targetObject, Concept associationType) throws JAXRException;
-
-    Classification createClassification(ClassificationScheme scheme, InternationalString name, String value) throws JAXRException;
-
-    Classification createClassification(ClassificationScheme scheme, String name, String value) throws JAXRException;
-
-    Classification createClassification(Concept concept) throws JAXRException, InvalidRequestException;
-
-    ClassificationScheme createClassificationScheme(Concept concept) throws JAXRException, InvalidRequestException;
-
-    ClassificationScheme createClassificationScheme(InternationalString name, InternationalString description) throws JAXRException, InvalidRequestException;
-
-    ClassificationScheme createClassificationScheme(String name, String description) throws JAXRException, InvalidRequestException;
-
-    Concept createConcept(RegistryObject parent, InternationalString name, String value) throws JAXRException;
-
-    Concept createConcept(RegistryObject parent, String name, String value) throws JAXRException;
-
-    EmailAddress createEmailAddress(String address) throws JAXRException;
-
-    EmailAddress createEmailAddress(String address, String type) throws JAXRException;
-
-    ExternalIdentifier createExternalIdentifier(ClassificationScheme identificationScheme, InternationalString name, String value) throws JAXRException;
-
-    ExternalIdentifier createExternalIdentifier(ClassificationScheme identificationScheme, String name, String value) throws JAXRException;
-
-    ExternalLink createExternalLink(String externalURI, InternationalString description) throws JAXRException;
-
-    ExternalLink createExternalLink(String externalURI, String description) throws JAXRException;
-
-    ExtrinsicObject createExtrinsicObject(DataHandler repositoryItem) throws JAXRException;
-
-    InternationalString createInternationalString() throws JAXRException;
-
-    InternationalString createInternationalString(Locale locale, String value) throws JAXRException;
-
-    InternationalString createInternationalString(String value) throws JAXRException;
-
-    Key createKey(String id) throws JAXRException;
-
-    LocalizedString createLocalizedString(Locale locale, String value) throws JAXRException;
-
-    LocalizedString createLocalizedString(Locale locale, String value, String chatsetName) throws JAXRException;
-
-    Object createObject(String interfaceName) throws JAXRException, InvalidRequestException, UnsupportedCapabilityException;
-
-    Organization createOrganization(InternationalString name) throws JAXRException;
-
-    Organization createOrganization(String name) throws JAXRException;
-
-    PersonName createPersonName(String fullName) throws JAXRException;
-
-    PersonName createPersonName(String firstName, String middleName, String lastName) throws JAXRException;
-
-    PostalAddress createPostalAddress(String streetNumber, String street, String city, String stateOrProvince, String country, String postalCode, String type) throws JAXRException;
-
-    RegistryPackage createRegistryPackage(InternationalString name) throws JAXRException;
-
-    RegistryPackage createRegistryPackage(String name) throws JAXRException;
-
-    Service createService(InternationalString name) throws JAXRException;
-
-    Service createService(String name) throws JAXRException;
-
-    ServiceBinding createServiceBinding() throws JAXRException;
-
-    Slot createSlot(String name, Collection values, String slotType) throws JAXRException;
-
-    Slot createSlot(String name, String value, String slotType) throws JAXRException;
-
-    SpecificationLink createSpecificationLink() throws JAXRException;
-
-    TelephoneNumber createTelephoneNumber() throws JAXRException;
-
-    User createUser() throws JAXRException;
-
-    BulkResponse deleteObjects(Collection keys) throws JAXRException;
-
-    BulkResponse deleteObjects(Collection keys, String objectType) throws JAXRException;
-
-    BulkResponse deprecateObjects(Collection keys) throws JAXRException;
-
-    RegistryService getRegistryService() throws JAXRException;
-
-    BulkResponse saveObjects(Collection objects) throws JAXRException;
-
-    BulkResponse unDeprecateObjects(Collection keys) throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry;
+
+import java.util.Collection;
+import java.util.Locale;
+import javax.activation.DataHandler;
+import javax.xml.registry.infomodel.Association;
+import javax.xml.registry.infomodel.Classification;
+import javax.xml.registry.infomodel.ClassificationScheme;
+import javax.xml.registry.infomodel.Concept;
+import javax.xml.registry.infomodel.EmailAddress;
+import javax.xml.registry.infomodel.ExternalIdentifier;
+import javax.xml.registry.infomodel.ExternalLink;
+import javax.xml.registry.infomodel.ExtrinsicObject;
+import javax.xml.registry.infomodel.InternationalString;
+import javax.xml.registry.infomodel.Key;
+import javax.xml.registry.infomodel.LocalizedString;
+import javax.xml.registry.infomodel.Organization;
+import javax.xml.registry.infomodel.PersonName;
+import javax.xml.registry.infomodel.PostalAddress;
+import javax.xml.registry.infomodel.RegistryObject;
+import javax.xml.registry.infomodel.RegistryPackage;
+import javax.xml.registry.infomodel.Service;
+import javax.xml.registry.infomodel.ServiceBinding;
+import javax.xml.registry.infomodel.Slot;
+import javax.xml.registry.infomodel.SpecificationLink;
+import javax.xml.registry.infomodel.TelephoneNumber;
+import javax.xml.registry.infomodel.User;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface LifeCycleManager {
+    public static final String ASSOCIATION = "Association";
+    public static final String AUDITABLE_EVENT = "AuditableEvent";
+    public static final String CLASSIFICATION = "Classification";
+    public static final String CLASSIFICATION_SCHEME = "ClassificationScheme";
+    public static final String CONCEPT = "Concept";
+    public static final String EMAIL_ADDRESS = "EmailAddress";
+    public static final String EXTERNAL_IDENTIFIER = "ExternalIdentifier";
+    public static final String EXTERNAL_LINK = "ExternalLink";
+    public static final String EXTRINSIC_OBJECT = "ExtrinsicObject";
+    public static final String INTERNATIONAL_STRING = "InternationalString";
+    public static final String KEY = "Key";
+    public static final String LOCALIZED_STRING = "LocalizedString";
+    public static final String ORGANIZATION = "Organization";
+    public static final String PERSON_NAME = "PersonName";
+    public static final String POSTAL_ADDRESS = "PostalAddress";
+    public static final String REGISTRY_ENTRY = "RegistryEntry";
+    public static final String REGISTRY_PACKAGE = "RegistryPackage";
+    public static final String SERVICE = "Service";
+    public static final String SERVICE_BINDING = "ServiceBinding";
+    public static final String SLOT = "Slot";
+    public static final String SPECIFICATION_LINK = "SpecificationLink";
+    public static final String TELEPHONE_NUMBER = "TelephoneNumber";
+    public static final String USER = "User";
+    public static final String VERSIONABLE = "Versionable";
+
+    Association createAssociation(RegistryObject targetObject, Concept associationType) throws JAXRException;
+
+    Classification createClassification(ClassificationScheme scheme, InternationalString name, String value) throws JAXRException;
+
+    Classification createClassification(ClassificationScheme scheme, String name, String value) throws JAXRException;
+
+    Classification createClassification(Concept concept) throws JAXRException, InvalidRequestException;
+
+    ClassificationScheme createClassificationScheme(Concept concept) throws JAXRException, InvalidRequestException;
+
+    ClassificationScheme createClassificationScheme(InternationalString name, InternationalString description) throws JAXRException, InvalidRequestException;
+
+    ClassificationScheme createClassificationScheme(String name, String description) throws JAXRException, InvalidRequestException;
+
+    Concept createConcept(RegistryObject parent, InternationalString name, String value) throws JAXRException;
+
+    Concept createConcept(RegistryObject parent, String name, String value) throws JAXRException;
+
+    EmailAddress createEmailAddress(String address) throws JAXRException;
+
+    EmailAddress createEmailAddress(String address, String type) throws JAXRException;
+
+    ExternalIdentifier createExternalIdentifier(ClassificationScheme identificationScheme, InternationalString name, String value) throws JAXRException;
+
+    ExternalIdentifier createExternalIdentifier(ClassificationScheme identificationScheme, String name, String value) throws JAXRException;
+
+    ExternalLink createExternalLink(String externalURI, InternationalString description) throws JAXRException;
+
+    ExternalLink createExternalLink(String externalURI, String description) throws JAXRException;
+
+    ExtrinsicObject createExtrinsicObject(DataHandler repositoryItem) throws JAXRException;
+
+    InternationalString createInternationalString() throws JAXRException;
+
+    InternationalString createInternationalString(Locale locale, String value) throws JAXRException;
+
+    InternationalString createInternationalString(String value) throws JAXRException;
+
+    Key createKey(String id) throws JAXRException;
+
+    LocalizedString createLocalizedString(Locale locale, String value) throws JAXRException;
+
+    LocalizedString createLocalizedString(Locale locale, String value, String chatsetName) throws JAXRException;
+
+    Object createObject(String interfaceName) throws JAXRException, InvalidRequestException, UnsupportedCapabilityException;
+
+    Organization createOrganization(InternationalString name) throws JAXRException;
+
+    Organization createOrganization(String name) throws JAXRException;
+
+    PersonName createPersonName(String fullName) throws JAXRException;
+
+    PersonName createPersonName(String firstName, String middleName, String lastName) throws JAXRException;
+
+    PostalAddress createPostalAddress(String streetNumber, String street, String city, String stateOrProvince, String country, String postalCode, String type) throws JAXRException;
+
+    RegistryPackage createRegistryPackage(InternationalString name) throws JAXRException;
+
+    RegistryPackage createRegistryPackage(String name) throws JAXRException;
+
+    Service createService(InternationalString name) throws JAXRException;
+
+    Service createService(String name) throws JAXRException;
+
+    ServiceBinding createServiceBinding() throws JAXRException;
+
+    Slot createSlot(String name, Collection values, String slotType) throws JAXRException;
+
+    Slot createSlot(String name, String value, String slotType) throws JAXRException;
+
+    SpecificationLink createSpecificationLink() throws JAXRException;
+
+    TelephoneNumber createTelephoneNumber() throws JAXRException;
+
+    User createUser() throws JAXRException;
+
+    BulkResponse deleteObjects(Collection keys) throws JAXRException;
+
+    BulkResponse deleteObjects(Collection keys, String objectType) throws JAXRException;
+
+    BulkResponse deprecateObjects(Collection keys) throws JAXRException;
+
+    RegistryService getRegistryService() throws JAXRException;
+
+    BulkResponse saveObjects(Collection objects) throws JAXRException;
+
+    BulkResponse unDeprecateObjects(Collection keys) throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/LifeCycleManager.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/LifeCycleManager.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/LifeCycleManager.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/Query.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/Query.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/Query.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/Query.java Sat Aug 26 17:17:49 2006
@@ -1,36 +1,36 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface Query {
-    public static final int QUERY_TYPE_SQL = 0;
-    public static final int QUERY_TYPE_XQUERY = 1;
-    public static final int QUERY_TYPE_EBXML_FILTER_QUERY = 2;
-
-    int getType() throws JAXRException;
-
-    String toString();
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface Query {
+    public static final int QUERY_TYPE_SQL = 0;
+    public static final int QUERY_TYPE_XQUERY = 1;
+    public static final int QUERY_TYPE_EBXML_FILTER_QUERY = 2;
+
+    int getType() throws JAXRException;
+
+    String toString();
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/Query.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/Query.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/Query.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/QueryManager.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/QueryManager.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/QueryManager.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/QueryManager.java Sat Aug 26 17:17:49 2006
@@ -1,45 +1,45 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry;
-
-import java.util.Collection;
-import javax.xml.registry.infomodel.RegistryObject;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface QueryManager {
-    RegistryObject getRegistryObject(String id) throws JAXRException;
-
-    RegistryObject getRegistryObject(String id, String objectType) throws JAXRException;
-
-    BulkResponse getRegistryObjects() throws JAXRException;
-
-    BulkResponse getRegistryObjects(Collection objectKeys) throws JAXRException;
-
-    BulkResponse getRegistryObjects(Collection objectKeys, String objectTypes) throws JAXRException;
-
-    BulkResponse getRegistryObjects(String objectTypes) throws JAXRException;
-
-    RegistryService getRegistryService() throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry;
+
+import java.util.Collection;
+import javax.xml.registry.infomodel.RegistryObject;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface QueryManager {
+    RegistryObject getRegistryObject(String id) throws JAXRException;
+
+    RegistryObject getRegistryObject(String id, String objectType) throws JAXRException;
+
+    BulkResponse getRegistryObjects() throws JAXRException;
+
+    BulkResponse getRegistryObjects(Collection objectKeys) throws JAXRException;
+
+    BulkResponse getRegistryObjects(Collection objectKeys, String objectTypes) throws JAXRException;
+
+    BulkResponse getRegistryObjects(String objectTypes) throws JAXRException;
+
+    RegistryService getRegistryService() throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/QueryManager.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/QueryManager.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/QueryManager.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryException.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryException.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryException.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryException.java Sat Aug 26 17:17:49 2006
@@ -1,55 +1,55 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry;
-
-import javax.xml.registry.infomodel.Key;
-
-/**
- * @version $Revision$ $Date$
- */
-public class RegistryException extends JAXRException {
-    private Key errorObjectKey;
-
-    public RegistryException() {
-    }
-
-    public RegistryException(String message) {
-        super(message);
-    }
-
-    public RegistryException(Throwable cause) {
-        super(cause);
-    }
-
-    public RegistryException(String message, Throwable cause) {
-        super(message, cause);
-    }
-
-    public Key getErrorObjectKey() throws JAXRException {
-        return errorObjectKey;
-    }
-
-    public void setErrorObjectKey(Key errorObjectKey) throws JAXRException {
-        this.errorObjectKey = errorObjectKey;
-    }
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry;
+
+import javax.xml.registry.infomodel.Key;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public class RegistryException extends JAXRException {
+    private Key errorObjectKey;
+
+    public RegistryException() {
+    }
+
+    public RegistryException(String message) {
+        super(message);
+    }
+
+    public RegistryException(Throwable cause) {
+        super(cause);
+    }
+
+    public RegistryException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    public Key getErrorObjectKey() throws JAXRException {
+        return errorObjectKey;
+    }
+
+    public void setErrorObjectKey(Key errorObjectKey) throws JAXRException {
+        this.errorObjectKey = errorObjectKey;
+    }
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryException.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryException.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryService.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryService.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryService.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryService.java Sat Aug 26 17:17:49 2006
@@ -1,44 +1,44 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry;
-
-import javax.xml.registry.infomodel.ClassificationScheme;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface RegistryService {
-    BulkResponse getBulkResponse(String requestId) throws JAXRException, InvalidRequestException;
-
-    BusinessLifeCycleManager getBusinessLifeCycleManager() throws JAXRException;
-
-    BusinessQueryManager getBusinessQueryManager() throws JAXRException;
-
-    CapabilityProfile getCapabilityProfile() throws JAXRException;
-
-    DeclarativeQueryManager getDeclarativeQueryManager() throws JAXRException, UnsupportedCapabilityException;
-
-    ClassificationScheme getDefaultPostalScheme() throws JAXRException;
-
-    String makeRegistrySpecificRequest(String request) throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry;
+
+import javax.xml.registry.infomodel.ClassificationScheme;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface RegistryService {
+    BulkResponse getBulkResponse(String requestId) throws JAXRException, InvalidRequestException;
+
+    BusinessLifeCycleManager getBusinessLifeCycleManager() throws JAXRException;
+
+    BusinessQueryManager getBusinessQueryManager() throws JAXRException;
+
+    CapabilityProfile getCapabilityProfile() throws JAXRException;
+
+    DeclarativeQueryManager getDeclarativeQueryManager() throws JAXRException, UnsupportedCapabilityException;
+
+    ClassificationScheme getDefaultPostalScheme() throws JAXRException;
+
+    String makeRegistrySpecificRequest(String request) throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryService.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryService.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/RegistryService.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/SaveException.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/SaveException.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/SaveException.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/SaveException.java Sat Aug 26 17:17:49 2006
@@ -1,43 +1,43 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry;
-
-/**
- * @version $Revision$ $Date$
- */
-public class SaveException extends RegistryException {
-    public SaveException() {
-    }
-
-    public SaveException(String message) {
-        super(message);
-    }
-
-    public SaveException(Throwable cause) {
-        super(cause);
-    }
-
-    public SaveException(String message, Throwable cause) {
-        super(message, cause);
-    }
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public class SaveException extends RegistryException {
+    public SaveException() {
+    }
+
+    public SaveException(String message) {
+        super(message);
+    }
+
+    public SaveException(Throwable cause) {
+        super(cause);
+    }
+
+    public SaveException(String message, Throwable cause) {
+        super(message, cause);
+    }
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/SaveException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/SaveException.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/SaveException.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnexpectedObjectException.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnexpectedObjectException.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnexpectedObjectException.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnexpectedObjectException.java Sat Aug 26 17:17:49 2006
@@ -1,43 +1,43 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry;
-
-/**
- * @version $Revision$ $Date$
- */
-public class UnexpectedObjectException extends JAXRException {
-    public UnexpectedObjectException() {
-    }
-
-    public UnexpectedObjectException(String message) {
-        super(message);
-    }
-
-    public UnexpectedObjectException(Throwable cause) {
-        super(cause);
-    }
-
-    public UnexpectedObjectException(String message, Throwable cause) {
-        super(message, cause);
-    }
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public class UnexpectedObjectException extends JAXRException {
+    public UnexpectedObjectException() {
+    }
+
+    public UnexpectedObjectException(String message) {
+        super(message);
+    }
+
+    public UnexpectedObjectException(Throwable cause) {
+        super(cause);
+    }
+
+    public UnexpectedObjectException(String message, Throwable cause) {
+        super(message, cause);
+    }
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnexpectedObjectException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnexpectedObjectException.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnexpectedObjectException.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnsupportedCapabilityException.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnsupportedCapabilityException.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnsupportedCapabilityException.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnsupportedCapabilityException.java Sat Aug 26 17:17:49 2006
@@ -1,43 +1,43 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry;
-
-/**
- * @version $Revision$ $Date$
- */
-public class UnsupportedCapabilityException extends JAXRException {
-    public UnsupportedCapabilityException() {
-    }
-
-    public UnsupportedCapabilityException(String message) {
-        super(message);
-    }
-
-    public UnsupportedCapabilityException(Throwable cause) {
-        super(cause);
-    }
-
-    public UnsupportedCapabilityException(String message, Throwable cause) {
-        super(message, cause);
-    }
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public class UnsupportedCapabilityException extends JAXRException {
+    public UnsupportedCapabilityException() {
+    }
+
+    public UnsupportedCapabilityException(String message) {
+        super(message);
+    }
+
+    public UnsupportedCapabilityException(Throwable cause) {
+        super(cause);
+    }
+
+    public UnsupportedCapabilityException(String message, Throwable cause) {
+        super(message, cause);
+    }
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnsupportedCapabilityException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnsupportedCapabilityException.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/UnsupportedCapabilityException.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Association.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Association.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Association.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Association.java Sat Aug 26 17:17:49 2006
@@ -1,50 +1,50 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry.infomodel;
-
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface Association extends RegistryObject {
-    Concept getAssociationType() throws JAXRException;
-
-    RegistryObject getSourceObject() throws JAXRException;
-
-    RegistryObject getTargetObject() throws JAXRException;
-
-    boolean isConfirmed() throws JAXRException;
-
-    boolean isConfirmedBySourceOwner() throws JAXRException;
-
-    boolean isConfirmedByTargetOwner() throws JAXRException;
-
-    boolean isExtramural() throws JAXRException;
-
-    void setAssociationType(Concept associationType) throws JAXRException;
-
-    void setSourceObject(RegistryObject source) throws JAXRException;
-
-    void setTargetObject(RegistryObject target) throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry.infomodel;
+
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface Association extends RegistryObject {
+    Concept getAssociationType() throws JAXRException;
+
+    RegistryObject getSourceObject() throws JAXRException;
+
+    RegistryObject getTargetObject() throws JAXRException;
+
+    boolean isConfirmed() throws JAXRException;
+
+    boolean isConfirmedBySourceOwner() throws JAXRException;
+
+    boolean isConfirmedByTargetOwner() throws JAXRException;
+
+    boolean isExtramural() throws JAXRException;
+
+    void setAssociationType(Concept associationType) throws JAXRException;
+
+    void setSourceObject(RegistryObject source) throws JAXRException;
+
+    void setTargetObject(RegistryObject target) throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Association.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Association.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Association.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/AuditableEvent.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/AuditableEvent.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/AuditableEvent.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/AuditableEvent.java Sat Aug 26 17:17:49 2006
@@ -1,46 +1,46 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry.infomodel;
-
-import java.sql.Timestamp;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface AuditableEvent extends RegistryObject {
-    public static final int EVENT_TYPE_CREATED = 0;
-    public static final int EVENT_TYPE_DELETED = 1;
-    public static final int EVENT_TYPE_DEPRECATED = 2;
-    public static final int EVENT_TYPE_UPDATED = 3;
-    public static final int EVENT_TYPE_VERSIONED = 4;
-    public static final int EVENT_TYPE_UNDEPRECATED = 5;
-
-    int getEventType() throws JAXRException;
-
-    RegistryObject getRegistryObject() throws JAXRException;
-
-    Timestamp getTimestamp() throws JAXRException;
-
-    User getUser() throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry.infomodel;
+
+import java.sql.Timestamp;
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface AuditableEvent extends RegistryObject {
+    public static final int EVENT_TYPE_CREATED = 0;
+    public static final int EVENT_TYPE_DELETED = 1;
+    public static final int EVENT_TYPE_DEPRECATED = 2;
+    public static final int EVENT_TYPE_UPDATED = 3;
+    public static final int EVENT_TYPE_VERSIONED = 4;
+    public static final int EVENT_TYPE_UNDEPRECATED = 5;
+
+    int getEventType() throws JAXRException;
+
+    RegistryObject getRegistryObject() throws JAXRException;
+
+    Timestamp getTimestamp() throws JAXRException;
+
+    User getUser() throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/AuditableEvent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/AuditableEvent.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/AuditableEvent.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Classification.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Classification.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Classification.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Classification.java Sat Aug 26 17:17:49 2006
@@ -1,48 +1,48 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry.infomodel;
-
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface Classification extends RegistryObject {
-    ClassificationScheme getClassificationScheme() throws JAXRException;
-
-    RegistryObject getClassifiedObject() throws JAXRException;
-
-    Concept getConcept() throws JAXRException;
-
-    String getValue() throws JAXRException;
-
-    boolean isExternal() throws JAXRException;
-
-    void setClassificationScheme(ClassificationScheme classificationScheme) throws JAXRException;
-
-    void setClassifiedObject(RegistryObject classifiedObject) throws JAXRException;
-
-    void setConcept(Concept concept) throws JAXRException;
-
-    void setValue(String value) throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry.infomodel;
+
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface Classification extends RegistryObject {
+    ClassificationScheme getClassificationScheme() throws JAXRException;
+
+    RegistryObject getClassifiedObject() throws JAXRException;
+
+    Concept getConcept() throws JAXRException;
+
+    String getValue() throws JAXRException;
+
+    boolean isExternal() throws JAXRException;
+
+    void setClassificationScheme(ClassificationScheme classificationScheme) throws JAXRException;
+
+    void setClassifiedObject(RegistryObject classifiedObject) throws JAXRException;
+
+    void setConcept(Concept concept) throws JAXRException;
+
+    void setValue(String value) throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Classification.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Classification.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Classification.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ClassificationScheme.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ClassificationScheme.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ClassificationScheme.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ClassificationScheme.java Sat Aug 26 17:17:49 2006
@@ -1,55 +1,55 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry.infomodel;
-
-import java.util.Collection;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface ClassificationScheme extends RegistryEntry {
-    public static final int VALUE_TYPE_UNIQUE = 0;
-    public static final int VALUE_TYPE_EMBEDDED_PATH = 1;
-    public static final int VALUE_TYPE_NON_UNIQUE = 2;
-
-    void addChildConcept(Concept concept) throws JAXRException;
-
-    void addChildConcepts(Collection concepts) throws JAXRException;
-
-    int getChildConceptCount() throws JAXRException;
-
-    Collection getChildrenConcepts() throws JAXRException;
-
-    Collection getDescendantConcepts() throws JAXRException;
-
-    int getValueType() throws JAXRException;
-
-    boolean isExternal() throws JAXRException;
-
-    void removeChildConcept(Concept concept) throws JAXRException;
-
-    void removeChildConcepts(Collection concepts) throws JAXRException;
-
-    void setValueType(int valueType) throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry.infomodel;
+
+import java.util.Collection;
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface ClassificationScheme extends RegistryEntry {
+    public static final int VALUE_TYPE_UNIQUE = 0;
+    public static final int VALUE_TYPE_EMBEDDED_PATH = 1;
+    public static final int VALUE_TYPE_NON_UNIQUE = 2;
+
+    void addChildConcept(Concept concept) throws JAXRException;
+
+    void addChildConcepts(Collection concepts) throws JAXRException;
+
+    int getChildConceptCount() throws JAXRException;
+
+    Collection getChildrenConcepts() throws JAXRException;
+
+    Collection getDescendantConcepts() throws JAXRException;
+
+    int getValueType() throws JAXRException;
+
+    boolean isExternal() throws JAXRException;
+
+    void removeChildConcept(Concept concept) throws JAXRException;
+
+    void removeChildConcepts(Collection concepts) throws JAXRException;
+
+    void setValueType(int valueType) throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ClassificationScheme.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ClassificationScheme.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ClassificationScheme.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Concept.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Concept.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Concept.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Concept.java Sat Aug 26 17:17:49 2006
@@ -1,57 +1,57 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry.infomodel;
-
-import java.util.Collection;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface Concept extends RegistryObject {
-    void addChildConcept(Concept concept) throws JAXRException;
-
-    void addChildConcepts(Collection concepts) throws JAXRException;
-
-    int getChildConceptCount() throws JAXRException;
-
-    Collection getChildrenConcepts() throws JAXRException;
-
-    ClassificationScheme getClassificationScheme() throws JAXRException;
-
-    Collection getDescendantConcepts() throws JAXRException;
-
-    RegistryObject getParent() throws JAXRException;
-
-    Concept getParentConcept() throws JAXRException;
-
-    String getPath() throws JAXRException;
-
-    String getValue() throws JAXRException;
-
-    void removeChildConcept(Concept concept) throws JAXRException;
-
-    void removeChildConcepts(Collection concepts) throws JAXRException;
-
-    void setValue(String value) throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry.infomodel;
+
+import java.util.Collection;
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface Concept extends RegistryObject {
+    void addChildConcept(Concept concept) throws JAXRException;
+
+    void addChildConcepts(Collection concepts) throws JAXRException;
+
+    int getChildConceptCount() throws JAXRException;
+
+    Collection getChildrenConcepts() throws JAXRException;
+
+    ClassificationScheme getClassificationScheme() throws JAXRException;
+
+    Collection getDescendantConcepts() throws JAXRException;
+
+    RegistryObject getParent() throws JAXRException;
+
+    Concept getParentConcept() throws JAXRException;
+
+    String getPath() throws JAXRException;
+
+    String getValue() throws JAXRException;
+
+    void removeChildConcept(Concept concept) throws JAXRException;
+
+    void removeChildConcepts(Collection concepts) throws JAXRException;
+
+    void setValue(String value) throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Concept.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Concept.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Concept.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/EmailAddress.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/EmailAddress.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/EmailAddress.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/EmailAddress.java Sat Aug 26 17:17:49 2006
@@ -1,38 +1,38 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry.infomodel;
-
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface EmailAddress {
-    String getAddress() throws JAXRException;
-
-    String getType() throws JAXRException;
-
-    void setAddress(String address) throws JAXRException;
-
-    void setType(String type) throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry.infomodel;
+
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface EmailAddress {
+    String getAddress() throws JAXRException;
+
+    String getType() throws JAXRException;
+
+    void setAddress(String address) throws JAXRException;
+
+    void setType(String type) throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/EmailAddress.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/EmailAddress.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/EmailAddress.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExtensibleObject.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExtensibleObject.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExtensibleObject.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExtensibleObject.java Sat Aug 26 17:17:49 2006
@@ -1,43 +1,43 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry.infomodel;
-
-import java.util.Collection;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface ExtensibleObject {
-    void addSlot(Slot slot) throws JAXRException;
-
-    void addSlots(Collection slots) throws JAXRException;
-
-    Slot getSlot(String slotName) throws JAXRException;
-
-    Collection getSlots() throws JAXRException;
-
-    void removeSlot(String slotName) throws JAXRException;
-
-    void removeSlots(Collection soltNames) throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry.infomodel;
+
+import java.util.Collection;
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface ExtensibleObject {
+    void addSlot(Slot slot) throws JAXRException;
+
+    void addSlots(Collection slots) throws JAXRException;
+
+    Slot getSlot(String slotName) throws JAXRException;
+
+    Collection getSlots() throws JAXRException;
+
+    void removeSlot(String slotName) throws JAXRException;
+
+    void removeSlots(Collection soltNames) throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExtensibleObject.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExtensibleObject.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExtensibleObject.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExternalIdentifier.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExternalIdentifier.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExternalIdentifier.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExternalIdentifier.java Sat Aug 26 17:17:49 2006
@@ -1,40 +1,40 @@
-/**
- *
- * Copyright 2003-2004 The Apache Software 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.
- */
-
-//
-// 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.xml.registry.infomodel;
-
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface ExternalIdentifier extends RegistryObject {
-    ClassificationScheme getIdentificationScheme() throws JAXRException;
-
-    RegistryObject getRegistryObject() throws JAXRException;
-
-    String getValue() throws JAXRException;
-
-    void setIdentificationScheme(ClassificationScheme identificationSchema) throws JAXRException;
-
-    void setValue(String value) throws JAXRException;
-}
+/**
+ *
+ * Copyright 2003-2004 The Apache Software 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.
+ */
+
+//
+// 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.xml.registry.infomodel;
+
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface ExternalIdentifier extends RegistryObject {
+    ClassificationScheme getIdentificationScheme() throws JAXRException;
+
+    RegistryObject getRegistryObject() throws JAXRException;
+
+    String getValue() throws JAXRException;
+
+    void setIdentificationScheme(ClassificationScheme identificationSchema) throws JAXRException;
+
+    void setValue(String value) throws JAXRException;
+}

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExternalIdentifier.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExternalIdentifier.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExternalIdentifier.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain