You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-commits@ws.apache.org by ae...@apache.org on 2007/02/26 15:33:19 UTC

svn commit: r511817 - in /webservices/muse/trunk/modules/muse-wsrf-api/src/org/apache/muse/ws/resource/metadata: MetadataDescriptor.java OpenMetadataDescriptor.java

Author: aeberbac
Date: Mon Feb 26 06:33:19 2007
New Revision: 511817

URL: http://svn.apache.org/viewvc?view=rev&rev=511817
Log:
MUSE-171: Added metadata support to the tooling. This means that 
wsdlmerge now will merge metadata documents referenced from the list of
wsdls to merge. Also the code generation takes in metadata documents
if they are available. Currently only the proxy generator pays attention
to metadata, I'll update the server synthesizer. Also moved the copyProperty
stuff out of the MetadataDescriptor and into wsdlmerge, thanks Dan.

Also added a MuseRuntimeException which subclasses RuntimeException and
captures the message id of the error. This is for automated testing
to make sure that error messages are the correct ones.

MUSE-161: Added a WsdlEnvironment that will go out and fetch remote files.

Modified:
    webservices/muse/trunk/modules/muse-wsrf-api/src/org/apache/muse/ws/resource/metadata/MetadataDescriptor.java
    webservices/muse/trunk/modules/muse-wsrf-api/src/org/apache/muse/ws/resource/metadata/OpenMetadataDescriptor.java

Modified: webservices/muse/trunk/modules/muse-wsrf-api/src/org/apache/muse/ws/resource/metadata/MetadataDescriptor.java
URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsrf-api/src/org/apache/muse/ws/resource/metadata/MetadataDescriptor.java?view=diff&rev=511817&r1=511816&r2=511817
==============================================================================
--- webservices/muse/trunk/modules/muse-wsrf-api/src/org/apache/muse/ws/resource/metadata/MetadataDescriptor.java (original)
+++ webservices/muse/trunk/modules/muse-wsrf-api/src/org/apache/muse/ws/resource/metadata/MetadataDescriptor.java Mon Feb 26 06:33:19 2007
@@ -38,16 +38,6 @@
 
 public interface MetadataDescriptor extends XmlSerializable
 {
-    /**
-     * 
-     * Adds all of the wsrmd:Property elements in the given MetadataDescriptor 
-     * to this descriptor. If this descriptor has a property whose name matches 
-     * one of those in the given descriptor, it will be overwritten.
-     * 
-     * @param otherRMD
-     * 
-     */
-    void addProperties(MetadataDescriptor otherRMD);
     
     /**
      * 

Modified: webservices/muse/trunk/modules/muse-wsrf-api/src/org/apache/muse/ws/resource/metadata/OpenMetadataDescriptor.java
URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsrf-api/src/org/apache/muse/ws/resource/metadata/OpenMetadataDescriptor.java?view=diff&rev=511817&r1=511816&r2=511817
==============================================================================
--- webservices/muse/trunk/modules/muse-wsrf-api/src/org/apache/muse/ws/resource/metadata/OpenMetadataDescriptor.java (original)
+++ webservices/muse/trunk/modules/muse-wsrf-api/src/org/apache/muse/ws/resource/metadata/OpenMetadataDescriptor.java Mon Feb 26 06:33:19 2007
@@ -66,11 +66,6 @@
         // this constructor is only explicit so we can make it private
         //
     }
-    
-    public void addProperties(MetadataDescriptor otherRMD)
-    {
-        throw new UnsupportedOperationException();
-    }
 
     public void addProperty(QName property, String modifiability, String mutability)
     {



---------------------------------------------------------------------
To unsubscribe, e-mail: muse-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-commits-help@ws.apache.org