You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@synapse.apache.org by sa...@apache.org on 2006/02/17 06:43:07 UTC

svn commit: r378440 - in /incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators: deprecation/ deprecation/META-INF/ sla/ sla/META-INF/

Author: saminda
Date: Thu Feb 16 21:43:05 2006
New Revision: 378440

URL: http://svn.apache.org/viewcvs?rev=378440&view=rev
Log:
updated the mediators 

Modified:
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConfiguration.java
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConfigurator.java
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConstants.java
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationMediator.java
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationRule.java
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/META-INF/services.xml
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/README.txt
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/META-INF/services.xml
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAConfigurator.java
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAConstants.java
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAMediator.java
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAObject.java
    incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAStack.java

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConfiguration.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConfiguration.java?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConfiguration.java (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConfiguration.java Thu Feb 16 21:43:05 2006
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package sampleMediators.deprecation;
+package org.apache.synapse.mediators.deprecation;
 
 public class DeprecationConfiguration {
 

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConfigurator.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConfigurator.java?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConfigurator.java (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConfigurator.java Thu Feb 16 21:43:05 2006
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package sampleMediators.deprecation;
+package org.apache.synapse.mediators.deprecation;
 
 import org.apache.axis2.addressing.EndpointReference;
 import org.apache.axis2.om.OMElement;

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConstants.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConstants.java?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConstants.java (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationConstants.java Thu Feb 16 21:43:05 2006
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package sampleMediators.deprecation;
+package org.apache.synapse.mediators.deprecation;
 
 public interface DeprecationConstants {
 

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationMediator.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationMediator.java?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationMediator.java (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationMediator.java Thu Feb 16 21:43:05 2006
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package sampleMediators.deprecation;
+package org.apache.synapse.mediators.deprecation;
 
 import org.apache.synapse.SynapseMessage;
 import org.apache.synapse.SynapseEnvironment;

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationRule.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationRule.java?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationRule.java (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/DeprecationRule.java Thu Feb 16 21:43:05 2006
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package sampleMediators.deprecation;
+package org.apache.synapse.mediators.deprecation;
 
 import java.text.DateFormat;
 import java.text.ParseException;

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/META-INF/services.xml
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/META-INF/services.xml?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/META-INF/services.xml (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/META-INF/services.xml Thu Feb 16 21:43:05 2006
@@ -1,7 +1,7 @@
 <!-- Can be used if the mediator is to be provided as an axis2 service-->
 <service name="DeprecationMediator">
     <parameter name="ServiceClass" locked="false">
-        sampleMediators.deprecation.DeprecationMediator</parameter>
+        org.apache.synapse.mediators.deprecation.DeprecationMediator</parameter>
     <operation name="mediate">
         <messageReceiver
                 class="org.apache.synapse.axis2.ServiceMediatorMessageReceiver"/>

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/README.txt
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/README.txt?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/README.txt (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/deprecation/README.txt Thu Feb 16 21:43:05 2006
@@ -28,7 +28,7 @@
 
  - Modify the deprecation.xml present in the 
       * aar (in case you are using the binary)
-      * src\sampleMediators\deprecation\META-INF (in case you are working with the source)
+      * src/org/apache/synapse/mediators/deprection/META-INF (in case you are working with the source)
    to suit the configuration you want.
  - Send in a request to Synapse and see it work/get rejected depending on the settings.
 

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/META-INF/services.xml
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/META-INF/services.xml?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/META-INF/services.xml (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/META-INF/services.xml Thu Feb 16 21:43:05 2006
@@ -1,7 +1,7 @@
 <!-- Can be used if the mediator is to be provided as an axis2 service-->
 <service name="SLAMediator">
     <parameter name="ServiceClass" locked="false">
-        sampleMediators.sla.SLAMediator</parameter>
+        org.apache.synapse.mediators.sla.SLAMediator</parameter>
     <operation name="mediate">
         <messageReceiver
                 class="org.apache.synapse.axis2.ServiceMediatorMessageReceiver"/>

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAConfigurator.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAConfigurator.java?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAConfigurator.java (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAConfigurator.java Thu Feb 16 21:43:05 2006
@@ -1,4 +1,20 @@
-package sampleMediators.sla;
+/*
+ * Copyright 2004,2005 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.
+ */
+
+package org.apache.synapse.mediators.sla;
 
 import org.apache.axis2.om.impl.llom.builder.StAXOMBuilder;
 import org.apache.axis2.om.OMElement;

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAConstants.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAConstants.java?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAConstants.java (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAConstants.java Thu Feb 16 21:43:05 2006
@@ -1,5 +1,20 @@
+/*
+ * Copyright 2004,2005 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.
+ */
 
-package sampleMediators.sla;
+package org.apache.synapse.mediators.sla;
 
 public interface SLAConstants {
 

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAMediator.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAMediator.java?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAMediator.java (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAMediator.java Thu Feb 16 21:43:05 2006
@@ -1,4 +1,20 @@
-package sampleMediators.sla;
+/*
+ * Copyright 2004,2005 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.
+ */
+
+package org.apache.synapse.mediators.sla;
 
 import org.apache.axis2.addressing.EndpointReference;
 import org.apache.synapse.SynapseMessage;

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAObject.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAObject.java?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAObject.java (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAObject.java Thu Feb 16 21:43:05 2006
@@ -1,4 +1,20 @@
-package sampleMediators.sla;
+/*
+ * Copyright 2004,2005 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.
+ */
+
+package org.apache.synapse.mediators.sla;
 
 public class SLAObject implements Comparable {
 

Modified: incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAStack.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAStack.java?rev=378440&r1=378439&r2=378440&view=diff
==============================================================================
--- incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAStack.java (original)
+++ incubator/synapse/trunk/java/modules/mediators/src/org/apache/synapse/mediators/sla/SLAStack.java Thu Feb 16 21:43:05 2006
@@ -1,4 +1,20 @@
-package sampleMediators.sla;
+/*
+ * Copyright 2004,2005 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.
+ */
+
+package org.apache.synapse.mediators.sla;
 import java.util.Collections;
 import java.util.ArrayList;
 



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