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 [10/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/infomodel/ExternalLink.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExternalLink.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExternalLink.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExternalLink.java Sat Aug 26 17:17:49 2006
@@ -1,37 +1,37 @@
-/**
- *
- * 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 ExternalLink extends RegistryObject, URIValidator {
-    String getExternalURI() throws JAXRException;
-
-    Collection getLinkedObjects() throws JAXRException;
-
-    void setExternalURI(String uri) 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 ExternalLink extends RegistryObject, URIValidator {
+    String getExternalURI() throws JAXRException;
+
+    Collection getLinkedObjects() throws JAXRException;
+
+    void setExternalURI(String uri) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExtrinsicObject.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExtrinsicObject.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExtrinsicObject.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ExtrinsicObject.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 javax.activation.DataHandler;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface ExtrinsicObject extends RegistryEntry {
-    String getMimeType() throws JAXRException;
-
-    DataHandler getRepositoryItem() throws JAXRException;
-
-    boolean isOpaque() throws JAXRException;
-
-    void setMimeType(String mimeType) throws JAXRException;
-
-    void setOpaque(boolean isOpaque) throws JAXRException;
-
-    void setRepositoryItem(DataHandler repositoryItem) 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.activation.DataHandler;
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface ExtrinsicObject extends RegistryEntry {
+    String getMimeType() throws JAXRException;
+
+    DataHandler getRepositoryItem() throws JAXRException;
+
+    boolean isOpaque() throws JAXRException;
+
+    void setMimeType(String mimeType) throws JAXRException;
+
+    void setOpaque(boolean isOpaque) throws JAXRException;
+
+    void setRepositoryItem(DataHandler repositoryItem) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/InternationalString.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/InternationalString.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/InternationalString.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/InternationalString.java Sat Aug 26 17:17:49 2006
@@ -1,52 +1,52 @@
-/**
- *
- * 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 java.util.Locale;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface InternationalString {
-    void addLocalizedString(LocalizedString localizedString) throws JAXRException;
-
-    void addLocalizedStrings(Collection localizedStrings) throws JAXRException;
-
-    LocalizedString getLocalizedString(Locale locale, String charsetName) throws JAXRException;
-
-    Collection getLocalizedStrings() throws JAXRException;
-
-    String getValue() throws JAXRException;
-
-    String getValue(Locale locale) throws JAXRException;
-
-    void removeLocalizedString(LocalizedString localizedString) throws JAXRException;
-
-    void removeLocalizedStrings(Collection localizedStrings) throws JAXRException;
-
-    void setValue(Locale locale, String value) 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 java.util.Locale;
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface InternationalString {
+    void addLocalizedString(LocalizedString localizedString) throws JAXRException;
+
+    void addLocalizedStrings(Collection localizedStrings) throws JAXRException;
+
+    LocalizedString getLocalizedString(Locale locale, String charsetName) throws JAXRException;
+
+    Collection getLocalizedStrings() throws JAXRException;
+
+    String getValue() throws JAXRException;
+
+    String getValue(Locale locale) throws JAXRException;
+
+    void removeLocalizedString(LocalizedString localizedString) throws JAXRException;
+
+    void removeLocalizedStrings(Collection localizedStrings) throws JAXRException;
+
+    void setValue(Locale locale, String value) throws JAXRException;
+
+    void setValue(String value) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Key.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Key.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Key.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Key.java Sat Aug 26 17:17:49 2006
@@ -1,34 +1,34 @@
-/**
- *
- * 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 Key {
-    String getId() throws JAXRException;
-
-    void setId(String id) 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 Key {
+    String getId() throws JAXRException;
+
+    void setId(String id) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/LocalizedString.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/LocalizedString.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/LocalizedString.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/LocalizedString.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.infomodel;
-
-import java.util.Locale;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface LocalizedString {
-    public static final String DEFAULT_CHARSET_NAME = "UTF-8";
-
-    String getCharsetName() throws JAXRException;
-
-    Locale getLocale() throws JAXRException;
-
-    String getValue() throws JAXRException;
-
-    void setCharsetName(String charsetName) throws JAXRException;
-
-    void setLocale(Locale locale) 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.Locale;
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface LocalizedString {
+    public static final String DEFAULT_CHARSET_NAME = "UTF-8";
+
+    String getCharsetName() throws JAXRException;
+
+    Locale getLocale() throws JAXRException;
+
+    String getValue() throws JAXRException;
+
+    void setCharsetName(String charsetName) throws JAXRException;
+
+    void setLocale(Locale locale) throws JAXRException;
+
+    void setValue(String value) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Organization.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Organization.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Organization.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Organization.java Sat Aug 26 17:17:49 2006
@@ -1,81 +1,81 @@
-/**
- *
- * 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 Organization extends RegistryObject {
-    void addChildOrganization(Organization organization) throws JAXRException;
-
-    void addChildOrganizations(Collection organizations) throws JAXRException;
-
-    void addService(Service service) throws JAXRException;
-
-    void addServices(Collection services) throws JAXRException;
-
-    void addUser(User user) throws JAXRException;
-
-    void addUsers(Collection users) throws JAXRException;
-
-    int getChildOrganizationCount() throws JAXRException;
-
-    Collection getChildOrganizations() throws JAXRException;
-
-    Collection getDescendantOrganizations() throws JAXRException;
-
-    Organization getParentOrganization() throws JAXRException;
-
-    PostalAddress getPostalAddress() throws JAXRException;
-
-    User getPrimaryContact() throws JAXRException;
-
-    Organization getRootOrganization() throws JAXRException;
-
-    Collection getServices() throws JAXRException;
-
-    Collection getTelephoneNumbers(String phoneType) throws JAXRException;
-
-    Collection getUsers() throws JAXRException;
-
-    void removeChildOrganization(Organization organization) throws JAXRException;
-
-    void removeChildOrganizations(Collection organizations) throws JAXRException;
-
-    void removeService(Service service) throws JAXRException;
-
-    void removeServices(Collection services) throws JAXRException;
-
-    void removeUser(User user) throws JAXRException;
-
-    void removeUsers(Collection users) throws JAXRException;
-
-    void setPostalAddress(PostalAddress address) throws JAXRException;
-
-    void setPrimaryContact(User primaryContact) throws JAXRException;
-
-    void setTelephoneNumbers(Collection phoneNumbers) 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 Organization extends RegistryObject {
+    void addChildOrganization(Organization organization) throws JAXRException;
+
+    void addChildOrganizations(Collection organizations) throws JAXRException;
+
+    void addService(Service service) throws JAXRException;
+
+    void addServices(Collection services) throws JAXRException;
+
+    void addUser(User user) throws JAXRException;
+
+    void addUsers(Collection users) throws JAXRException;
+
+    int getChildOrganizationCount() throws JAXRException;
+
+    Collection getChildOrganizations() throws JAXRException;
+
+    Collection getDescendantOrganizations() throws JAXRException;
+
+    Organization getParentOrganization() throws JAXRException;
+
+    PostalAddress getPostalAddress() throws JAXRException;
+
+    User getPrimaryContact() throws JAXRException;
+
+    Organization getRootOrganization() throws JAXRException;
+
+    Collection getServices() throws JAXRException;
+
+    Collection getTelephoneNumbers(String phoneType) throws JAXRException;
+
+    Collection getUsers() throws JAXRException;
+
+    void removeChildOrganization(Organization organization) throws JAXRException;
+
+    void removeChildOrganizations(Collection organizations) throws JAXRException;
+
+    void removeService(Service service) throws JAXRException;
+
+    void removeServices(Collection services) throws JAXRException;
+
+    void removeUser(User user) throws JAXRException;
+
+    void removeUsers(Collection users) throws JAXRException;
+
+    void setPostalAddress(PostalAddress address) throws JAXRException;
+
+    void setPrimaryContact(User primaryContact) throws JAXRException;
+
+    void setTelephoneNumbers(Collection phoneNumbers) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/PersonName.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/PersonName.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/PersonName.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/PersonName.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 javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface PersonName {
-    String getFirstName() throws JAXRException;
-
-    String getFullName() throws JAXRException;
-
-    String getLastName() throws JAXRException;
-
-    String getMiddleName() throws JAXRException;
-
-    void setFirstName(String firstName) throws JAXRException;
-
-    void setFullName(String fullName) throws JAXRException;
-
-    void setLastName(String lastName) throws JAXRException;
-
-    void setMiddleName(String middleName) 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 PersonName {
+    String getFirstName() throws JAXRException;
+
+    String getFullName() throws JAXRException;
+
+    String getLastName() throws JAXRException;
+
+    String getMiddleName() throws JAXRException;
+
+    void setFirstName(String firstName) throws JAXRException;
+
+    void setFullName(String fullName) throws JAXRException;
+
+    void setLastName(String lastName) throws JAXRException;
+
+    void setMiddleName(String middleName) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/PostalAddress.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/PostalAddress.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/PostalAddress.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/PostalAddress.java Sat Aug 26 17:17:49 2006
@@ -1,62 +1,62 @@
-/**
- *
- * 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 PostalAddress extends ExtensibleObject {
-    String getCity() throws JAXRException;
-
-    String getCountry() throws JAXRException;
-
-    String getPostalCode() throws JAXRException;
-
-    ClassificationScheme getPostalScheme() throws JAXRException;
-
-    String getStateOrProvince() throws JAXRException;
-
-    String getStreet() throws JAXRException;
-
-    String getStreetNumber() throws JAXRException;
-
-    String getType() throws JAXRException;
-
-    void setCity(String city) throws JAXRException;
-
-    void setCountry(String country) throws JAXRException;
-
-    void setPostalCode(String postalCode) throws JAXRException;
-
-    void setPostalScheme(ClassificationScheme postalScheme) throws JAXRException;
-
-    void setStateOrProvince(String state) throws JAXRException;
-
-    void setStreet(String street) throws JAXRException;
-
-    void setStreetNumber(String streetNumber) 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 PostalAddress extends ExtensibleObject {
+    String getCity() throws JAXRException;
+
+    String getCountry() throws JAXRException;
+
+    String getPostalCode() throws JAXRException;
+
+    ClassificationScheme getPostalScheme() throws JAXRException;
+
+    String getStateOrProvince() throws JAXRException;
+
+    String getStreet() throws JAXRException;
+
+    String getStreetNumber() throws JAXRException;
+
+    String getType() throws JAXRException;
+
+    void setCity(String city) throws JAXRException;
+
+    void setCountry(String country) throws JAXRException;
+
+    void setPostalCode(String postalCode) throws JAXRException;
+
+    void setPostalScheme(ClassificationScheme postalScheme) throws JAXRException;
+
+    void setStateOrProvince(String state) throws JAXRException;
+
+    void setStreet(String street) throws JAXRException;
+
+    void setStreetNumber(String streetNumber) throws JAXRException;
+
+    void setType(String type) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryEntry.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryEntry.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryEntry.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryEntry.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 java.util.Date;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface RegistryEntry extends RegistryObject, Versionable {
-    public static final int STABILITY_DYNAMIC = 0;
-    public static final int STABILITY_DYNAMIC_COMPATIBLE = 1;
-    public static final int STABILITY_STATIC = 2;
-
-    public static final int STATUS_SUBMITTED = 0;
-    public static final int STATUS_APPROVED = 1;
-    public static final int STATUS_DEPRECATED = 2;
-    public static final int STATUS_WITHDRAWN = 3;
-
-    Date getExpiration() throws JAXRException;
-
-    int getStability() throws JAXRException;
-
-    int getStatus() throws JAXRException;
-
-    void setExpiration(Date expiration) throws JAXRException;
-
-    void setStability(int stability) 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.Date;
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface RegistryEntry extends RegistryObject, Versionable {
+    public static final int STABILITY_DYNAMIC = 0;
+    public static final int STABILITY_DYNAMIC_COMPATIBLE = 1;
+    public static final int STABILITY_STATIC = 2;
+
+    public static final int STATUS_SUBMITTED = 0;
+    public static final int STATUS_APPROVED = 1;
+    public static final int STATUS_DEPRECATED = 2;
+    public static final int STATUS_WITHDRAWN = 3;
+
+    Date getExpiration() throws JAXRException;
+
+    int getStability() throws JAXRException;
+
+    int getStatus() throws JAXRException;
+
+    void setExpiration(Date expiration) throws JAXRException;
+
+    void setStability(int stability) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryObject.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryObject.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryObject.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryObject.java Sat Aug 26 17:17:49 2006
@@ -1,106 +1,106 @@
-/**
- *
- * 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;
-import javax.xml.registry.LifeCycleManager;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface RegistryObject extends ExtensibleObject {
-    void addAssociation(Association association) throws JAXRException;
-
-    void addAssociations(Collection associations) throws JAXRException;
-
-    void addClassification(Classification classification) throws JAXRException;
-
-    void addClassifications(Collection classifications) throws JAXRException;
-
-    void addExternalIdentifier(ExternalIdentifier externalIdentifier) throws JAXRException;
-
-    void addExternalIdentifiers(Collection externalIdentifiers) throws JAXRException;
-
-    void addExternalLink(ExternalLink externalLink) throws JAXRException;
-
-    void addExternalLinks(Collection externalLinks) throws JAXRException;
-
-    Collection getAssociatedObjects() throws JAXRException;
-
-    Collection getAssociations() throws JAXRException;
-
-    Collection getAuditTrail() throws JAXRException;
-
-    Collection getClassifications() throws JAXRException;
-
-    InternationalString getDescription() throws JAXRException;
-
-    Collection getExternalIdentifiers() throws JAXRException;
-
-    Collection getExternalLinks() throws JAXRException;
-
-    Key getKey() throws JAXRException;
-
-    LifeCycleManager getLifeCycleManager() throws JAXRException;
-
-    InternationalString getName() throws JAXRException;
-
-    Concept getObjectType() throws JAXRException;
-
-    Collection getRegistryPackages() throws JAXRException;
-
-    Organization getSubmittingOrganization() throws JAXRException;
-
-    void removeAssociation(Association association) throws JAXRException;
-
-    void removeAssociations(Collection associations) throws JAXRException;
-
-    void removeClassification(Classification classification) throws JAXRException;
-
-    void removeClassifications(Collection classifications) throws JAXRException;
-
-    void removeExternalIdentifier(ExternalIdentifier externalIdentifier) throws JAXRException;
-
-    void removeExternalIdentifiers(Collection externalIdentifiers) throws JAXRException;
-
-    void removeExternalLink(ExternalLink externalLink) throws JAXRException;
-
-    void removeExternalLinks(Collection externalLinks) throws JAXRException;
-
-    void setAssociations(Collection associations) throws JAXRException;
-
-    void setDescription(InternationalString description) throws JAXRException;
-
-    void setClassifications(Collection classifications) throws JAXRException;
-
-    void setExternalIdentifiers(Collection externalIdentifiers) throws JAXRException;
-
-    void setExternalLinks(Collection externalLinks) throws JAXRException;
-
-    void setKey(Key key) throws JAXRException;
-
-    void setName(InternationalString name) throws JAXRException;
-
-    String toXML() 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;
+import javax.xml.registry.LifeCycleManager;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface RegistryObject extends ExtensibleObject {
+    void addAssociation(Association association) throws JAXRException;
+
+    void addAssociations(Collection associations) throws JAXRException;
+
+    void addClassification(Classification classification) throws JAXRException;
+
+    void addClassifications(Collection classifications) throws JAXRException;
+
+    void addExternalIdentifier(ExternalIdentifier externalIdentifier) throws JAXRException;
+
+    void addExternalIdentifiers(Collection externalIdentifiers) throws JAXRException;
+
+    void addExternalLink(ExternalLink externalLink) throws JAXRException;
+
+    void addExternalLinks(Collection externalLinks) throws JAXRException;
+
+    Collection getAssociatedObjects() throws JAXRException;
+
+    Collection getAssociations() throws JAXRException;
+
+    Collection getAuditTrail() throws JAXRException;
+
+    Collection getClassifications() throws JAXRException;
+
+    InternationalString getDescription() throws JAXRException;
+
+    Collection getExternalIdentifiers() throws JAXRException;
+
+    Collection getExternalLinks() throws JAXRException;
+
+    Key getKey() throws JAXRException;
+
+    LifeCycleManager getLifeCycleManager() throws JAXRException;
+
+    InternationalString getName() throws JAXRException;
+
+    Concept getObjectType() throws JAXRException;
+
+    Collection getRegistryPackages() throws JAXRException;
+
+    Organization getSubmittingOrganization() throws JAXRException;
+
+    void removeAssociation(Association association) throws JAXRException;
+
+    void removeAssociations(Collection associations) throws JAXRException;
+
+    void removeClassification(Classification classification) throws JAXRException;
+
+    void removeClassifications(Collection classifications) throws JAXRException;
+
+    void removeExternalIdentifier(ExternalIdentifier externalIdentifier) throws JAXRException;
+
+    void removeExternalIdentifiers(Collection externalIdentifiers) throws JAXRException;
+
+    void removeExternalLink(ExternalLink externalLink) throws JAXRException;
+
+    void removeExternalLinks(Collection externalLinks) throws JAXRException;
+
+    void setAssociations(Collection associations) throws JAXRException;
+
+    void setDescription(InternationalString description) throws JAXRException;
+
+    void setClassifications(Collection classifications) throws JAXRException;
+
+    void setExternalIdentifiers(Collection externalIdentifiers) throws JAXRException;
+
+    void setExternalLinks(Collection externalLinks) throws JAXRException;
+
+    void setKey(Key key) throws JAXRException;
+
+    void setName(InternationalString name) throws JAXRException;
+
+    String toXML() throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryPackage.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryPackage.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryPackage.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/RegistryPackage.java Sat Aug 26 17:17:49 2006
@@ -1,42 +1,42 @@
-/**
- *
- * 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 java.util.Set;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface RegistryPackage extends RegistryEntry {
-    void addRegistryObject(RegistryObject registryObject) throws JAXRException;
-
-    void addRegistryObjects(Collection registryObjects) throws JAXRException;
-
-    Set getRegistryObjects() throws JAXRException;
-
-    void removeRegistryObject(RegistryObject registryObject) throws JAXRException;
-
-    void removeRegistryObjects(Collection registryObjects) 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 java.util.Set;
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface RegistryPackage extends RegistryEntry {
+    void addRegistryObject(RegistryObject registryObject) throws JAXRException;
+
+    void addRegistryObjects(Collection registryObjects) throws JAXRException;
+
+    Set getRegistryObjects() throws JAXRException;
+
+    void removeRegistryObject(RegistryObject registryObject) throws JAXRException;
+
+    void removeRegistryObjects(Collection registryObjects) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Service.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Service.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Service.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Service.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.infomodel;
-
-import java.util.Collection;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface Service extends RegistryEntry {
-    void addServiceBinding(ServiceBinding serviceBinding) throws JAXRException;
-
-    void addServiceBindings(Collection serviceBindings) throws JAXRException;
-
-    Organization getProvidingOrganization() throws JAXRException;
-
-    Collection getServiceBindings() throws JAXRException;
-
-    void removeServiceBinding(ServiceBinding serviceBinding) throws JAXRException;
-
-    void removeServiceBindings(Collection serviceBindings) throws JAXRException;
-
-    void setProvidingOrganization(Organization organization) 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 Service extends RegistryEntry {
+    void addServiceBinding(ServiceBinding serviceBinding) throws JAXRException;
+
+    void addServiceBindings(Collection serviceBindings) throws JAXRException;
+
+    Organization getProvidingOrganization() throws JAXRException;
+
+    Collection getServiceBindings() throws JAXRException;
+
+    void removeServiceBinding(ServiceBinding serviceBinding) throws JAXRException;
+
+    void removeServiceBindings(Collection serviceBindings) throws JAXRException;
+
+    void setProvidingOrganization(Organization organization) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ServiceBinding.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ServiceBinding.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ServiceBinding.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/ServiceBinding.java Sat Aug 26 17:17:49 2006
@@ -1,51 +1,51 @@
-/**
- *
- * 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 ServiceBinding extends RegistryObject, URIValidator {
-    void addSpecificationLink(SpecificationLink specificationLink) throws JAXRException;
-
-    void addSpecificationLinks(Collection specificationLinks) throws JAXRException;
-
-    String getAccessURI() throws JAXRException;
-
-    Service getService() throws JAXRException;
-
-    Collection getSpecificationLinks() throws JAXRException;
-
-    ServiceBinding getTargetBinding() throws JAXRException;
-
-    void removeSpecificationLink(SpecificationLink specificationLink) throws JAXRException;
-
-    void removeSpecificationLinks(Collection specificationLinks) throws JAXRException;
-
-    void setAccessURI(String uri) throws JAXRException;
-
-    void setTargetBinding(ServiceBinding binding) 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 ServiceBinding extends RegistryObject, URIValidator {
+    void addSpecificationLink(SpecificationLink specificationLink) throws JAXRException;
+
+    void addSpecificationLinks(Collection specificationLinks) throws JAXRException;
+
+    String getAccessURI() throws JAXRException;
+
+    Service getService() throws JAXRException;
+
+    Collection getSpecificationLinks() throws JAXRException;
+
+    ServiceBinding getTargetBinding() throws JAXRException;
+
+    void removeSpecificationLink(SpecificationLink specificationLink) throws JAXRException;
+
+    void removeSpecificationLinks(Collection specificationLinks) throws JAXRException;
+
+    void setAccessURI(String uri) throws JAXRException;
+
+    void setTargetBinding(ServiceBinding binding) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Slot.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Slot.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Slot.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/Slot.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 java.util.Collection;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface Slot {
-    public static final String ADDRESS_LINES_SLOT = "addressLines";
-    public static final String AUTHORIZED_NAME_SLOT = "authorizedName";
-    public static final String OPERATOR_SLOT = "operator";
-    public static final String SORT_CODE_SLOT = "sortCode";
-
-    String getName() throws JAXRException;
-
-    String getSlotType() throws JAXRException;
-
-    Collection getValues() throws JAXRException;
-
-    void setName(String name) throws JAXRException;
-
-    void setSlotType(String slotType) throws JAXRException;
-
-    void setValues(Collection values) 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 Slot {
+    public static final String ADDRESS_LINES_SLOT = "addressLines";
+    public static final String AUTHORIZED_NAME_SLOT = "authorizedName";
+    public static final String OPERATOR_SLOT = "operator";
+    public static final String SORT_CODE_SLOT = "sortCode";
+
+    String getName() throws JAXRException;
+
+    String getSlotType() throws JAXRException;
+
+    Collection getValues() throws JAXRException;
+
+    void setName(String name) throws JAXRException;
+
+    void setSlotType(String slotType) throws JAXRException;
+
+    void setValues(Collection values) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/SpecificationLink.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/SpecificationLink.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/SpecificationLink.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/SpecificationLink.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.infomodel;
-
-import java.util.Collection;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface SpecificationLink extends RegistryObject {
-    ServiceBinding getServiceBinding() throws JAXRException;
-
-    RegistryObject getSpecificationObject() throws JAXRException;
-
-    InternationalString getUsageDescription() throws JAXRException;
-
-    Collection getUsageParameters() throws JAXRException;
-
-    void setSpecificationObject(RegistryObject obj) throws JAXRException;
-
-    void setUsageDescription(InternationalString usageDescription) throws JAXRException;
-
-    void setUsageParameters(Collection usageParameters) 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 SpecificationLink extends RegistryObject {
+    ServiceBinding getServiceBinding() throws JAXRException;
+
+    RegistryObject getSpecificationObject() throws JAXRException;
+
+    InternationalString getUsageDescription() throws JAXRException;
+
+    Collection getUsageParameters() throws JAXRException;
+
+    void setSpecificationObject(RegistryObject obj) throws JAXRException;
+
+    void setUsageDescription(InternationalString usageDescription) throws JAXRException;
+
+    void setUsageParameters(Collection usageParameters) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/TelephoneNumber.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/TelephoneNumber.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/TelephoneNumber.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/TelephoneNumber.java Sat Aug 26 17:17:49 2006
@@ -1,54 +1,54 @@
-/**
- *
- * 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 TelephoneNumber {
-    String getAreaCode() throws JAXRException;
-
-    String getCountryCode() throws JAXRException;
-
-    String getExtension() throws JAXRException;
-
-    String getNumber() throws JAXRException;
-
-    String getType() throws JAXRException;
-
-    String getUrl() throws JAXRException;
-
-    void setAreaCode(String areaCode) throws JAXRException;
-
-    void setCountryCode(String countryCode) throws JAXRException;
-
-    void setExtension(String extension) throws JAXRException;
-
-    void setNumber(String number) throws JAXRException;
-
-    void setType(String type) throws JAXRException;
-
-    void setUrl(String url) 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 TelephoneNumber {
+    String getAreaCode() throws JAXRException;
+
+    String getCountryCode() throws JAXRException;
+
+    String getExtension() throws JAXRException;
+
+    String getNumber() throws JAXRException;
+
+    String getType() throws JAXRException;
+
+    String getUrl() throws JAXRException;
+
+    void setAreaCode(String areaCode) throws JAXRException;
+
+    void setCountryCode(String countryCode) throws JAXRException;
+
+    void setExtension(String extension) throws JAXRException;
+
+    void setNumber(String number) throws JAXRException;
+
+    void setType(String type) throws JAXRException;
+
+    void setUrl(String url) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/URIValidator.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/URIValidator.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/URIValidator.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/URIValidator.java Sat Aug 26 17:17:49 2006
@@ -1,34 +1,34 @@
-/**
- *
- * 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 URIValidator {
-    boolean getValidateURI() throws JAXRException;
-
-    void setValidateURI(boolean validate) 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 URIValidator {
+    boolean getValidateURI() throws JAXRException;
+
+    void setValidateURI(boolean validate) throws JAXRException;
+}

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

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

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

Modified: geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/User.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/User.java?rev=437256&r1=437255&r2=437256&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/User.java (original)
+++ geronimo/specs/trunk/geronimo-jaxr_1.0_spec/src/main/java/javax/xml/registry/infomodel/User.java Sat Aug 26 17:17:49 2006
@@ -1,58 +1,58 @@
-/**
- *
- * 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.net.URL;
-import java.util.Collection;
-import javax.xml.registry.JAXRException;
-
-/**
- * @version $Revision$ $Date$
- */
-public interface User extends RegistryObject {
-    Collection getEmailAddresses() throws JAXRException;
-
-    Organization getOrganization() throws JAXRException;
-
-    PersonName getPersonName() throws JAXRException;
-
-    Collection getPostalAddresses() throws JAXRException;
-
-    Collection getTelephoneNumbers(String phoneType) throws JAXRException;
-
-    String getType() throws JAXRException;
-
-    URL getUrl() throws JAXRException;
-
-    void setEmailAddresses(Collection addresses) throws JAXRException;
-
-    void setPersonName(PersonName personName) throws JAXRException;
-
-    void setPostalAddresses(Collection addresses) throws JAXRException;
-
-    void setTelephoneNumbers(Collection phoneNumbers) throws JAXRException;
-
-    void setType(String type) throws JAXRException;
-
-    void setUrl(URL url) 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.net.URL;
+import java.util.Collection;
+import javax.xml.registry.JAXRException;
+
+/**
+ * @version $Revision$ $Date$
+ */
+public interface User extends RegistryObject {
+    Collection getEmailAddresses() throws JAXRException;
+
+    Organization getOrganization() throws JAXRException;
+
+    PersonName getPersonName() throws JAXRException;
+
+    Collection getPostalAddresses() throws JAXRException;
+
+    Collection getTelephoneNumbers(String phoneType) throws JAXRException;
+
+    String getType() throws JAXRException;
+
+    URL getUrl() throws JAXRException;
+
+    void setEmailAddresses(Collection addresses) throws JAXRException;
+
+    void setPersonName(PersonName personName) throws JAXRException;
+
+    void setPostalAddresses(Collection addresses) throws JAXRException;
+
+    void setTelephoneNumbers(Collection phoneNumbers) throws JAXRException;
+
+    void setType(String type) throws JAXRException;
+
+    void setUrl(URL url) throws JAXRException;
+}

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

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

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