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/11 11:48:35 UTC

svn commit: r376965 - in /incubator/synapse/trunk/java: src/org/apache/synapse/axis2/ src/org/apache/synapse/processors/ src/org/apache/synapse/processors/builtin/ src/org/apache/synapse/xml/ test/org/apache/synapse/spi/injection/

Author: saminda
Date: Sat Feb 11 02:48:34 2006
New Revision: 376965

URL: http://svn.apache.org/viewcvs?rev=376965&view=rev
Log:
Added the Apache License

Modified:
    incubator/synapse/trunk/java/src/org/apache/synapse/axis2/DynamicAxisOperation.java
    incubator/synapse/trunk/java/src/org/apache/synapse/processors/RefDefineProcessor.java
    incubator/synapse/trunk/java/src/org/apache/synapse/processors/builtin/DropProcessor.java
    incubator/synapse/trunk/java/src/org/apache/synapse/processors/builtin/SendNowProcessor.java
    incubator/synapse/trunk/java/src/org/apache/synapse/xml/DropProcessorConfigurator.java
    incubator/synapse/trunk/java/src/org/apache/synapse/xml/RefDefineProcessorConfigurator.java
    incubator/synapse/trunk/java/src/org/apache/synapse/xml/SendNowProcessorConfigurator.java
    incubator/synapse/trunk/java/test/org/apache/synapse/spi/injection/SendNowProcessorWithRuleTest.java

Modified: incubator/synapse/trunk/java/src/org/apache/synapse/axis2/DynamicAxisOperation.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/src/org/apache/synapse/axis2/DynamicAxisOperation.java?rev=376965&r1=376964&r2=376965&view=diff
==============================================================================
--- incubator/synapse/trunk/java/src/org/apache/synapse/axis2/DynamicAxisOperation.java (original)
+++ incubator/synapse/trunk/java/src/org/apache/synapse/axis2/DynamicAxisOperation.java Sat Feb 11 02:48:34 2006
@@ -1,3 +1,19 @@
+/*
+ * 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.axis2;
 
 import org.apache.axis2.description.*;
@@ -18,7 +34,8 @@
 import java.util.HashMap;
 
 /**
-  */
+ * DynamicAxisOperation which switch dyamcially between MEPs
+ */
 public class DynamicAxisOperation extends InOutAxisOperation {
     public DynamicAxisOperation() {
         super();

Modified: incubator/synapse/trunk/java/src/org/apache/synapse/processors/RefDefineProcessor.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/src/org/apache/synapse/processors/RefDefineProcessor.java?rev=376965&r1=376964&r2=376965&view=diff
==============================================================================
--- incubator/synapse/trunk/java/src/org/apache/synapse/processors/RefDefineProcessor.java (original)
+++ incubator/synapse/trunk/java/src/org/apache/synapse/processors/RefDefineProcessor.java Sat Feb 11 02:48:34 2006
@@ -1,3 +1,19 @@
+/*
+ * 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.processors;
 
 import org.apache.synapse.SynapseEnvironment;
@@ -6,7 +22,8 @@
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 
-/*
+/**
+ * Processor that reference to <refdefine/>
  */
 public class RefDefineProcessor extends AbstractProcessor{
     private Log log = LogFactory.getLog(getClass());

Modified: incubator/synapse/trunk/java/src/org/apache/synapse/processors/builtin/DropProcessor.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/src/org/apache/synapse/processors/builtin/DropProcessor.java?rev=376965&r1=376964&r2=376965&view=diff
==============================================================================
--- incubator/synapse/trunk/java/src/org/apache/synapse/processors/builtin/DropProcessor.java (original)
+++ incubator/synapse/trunk/java/src/org/apache/synapse/processors/builtin/DropProcessor.java Sat Feb 11 02:48:34 2006
@@ -1,3 +1,19 @@
+/*
+ * 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.processors.builtin;
 
 import org.apache.synapse.processors.AbstractProcessor;
@@ -5,6 +21,7 @@
 import org.apache.synapse.SynapseMessage;
 
 /**
+ * Implementaion of <drop/>
  */
 public class DropProcessor extends AbstractProcessor {
     

Modified: incubator/synapse/trunk/java/src/org/apache/synapse/processors/builtin/SendNowProcessor.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/src/org/apache/synapse/processors/builtin/SendNowProcessor.java?rev=376965&r1=376964&r2=376965&view=diff
==============================================================================
--- incubator/synapse/trunk/java/src/org/apache/synapse/processors/builtin/SendNowProcessor.java (original)
+++ incubator/synapse/trunk/java/src/org/apache/synapse/processors/builtin/SendNowProcessor.java Sat Feb 11 02:48:34 2006
@@ -1,3 +1,19 @@
+/*
+ * 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.processors.builtin;
 
 import org.apache.synapse.processors.AbstractProcessor;
@@ -28,6 +44,7 @@
 import javax.xml.namespace.QName;
 
 /**
+ * Implementaion of <sendnow/>
  */
 public class SendNowProcessor extends AbstractProcessor {
     public boolean process(SynapseEnvironment se, SynapseMessage sm) {

Modified: incubator/synapse/trunk/java/src/org/apache/synapse/xml/DropProcessorConfigurator.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/src/org/apache/synapse/xml/DropProcessorConfigurator.java?rev=376965&r1=376964&r2=376965&view=diff
==============================================================================
--- incubator/synapse/trunk/java/src/org/apache/synapse/xml/DropProcessorConfigurator.java (original)
+++ incubator/synapse/trunk/java/src/org/apache/synapse/xml/DropProcessorConfigurator.java Sat Feb 11 02:48:34 2006
@@ -1,3 +1,19 @@
+/*
+ * 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.xml;
 
 import org.apache.synapse.Processor;

Modified: incubator/synapse/trunk/java/src/org/apache/synapse/xml/RefDefineProcessorConfigurator.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/src/org/apache/synapse/xml/RefDefineProcessorConfigurator.java?rev=376965&r1=376964&r2=376965&view=diff
==============================================================================
--- incubator/synapse/trunk/java/src/org/apache/synapse/xml/RefDefineProcessorConfigurator.java (original)
+++ incubator/synapse/trunk/java/src/org/apache/synapse/xml/RefDefineProcessorConfigurator.java Sat Feb 11 02:48:34 2006
@@ -1,3 +1,19 @@
+/*
+ * 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.xml;
 
 import org.apache.synapse.Processor;

Modified: incubator/synapse/trunk/java/src/org/apache/synapse/xml/SendNowProcessorConfigurator.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/src/org/apache/synapse/xml/SendNowProcessorConfigurator.java?rev=376965&r1=376964&r2=376965&view=diff
==============================================================================
--- incubator/synapse/trunk/java/src/org/apache/synapse/xml/SendNowProcessorConfigurator.java (original)
+++ incubator/synapse/trunk/java/src/org/apache/synapse/xml/SendNowProcessorConfigurator.java Sat Feb 11 02:48:34 2006
@@ -1,3 +1,19 @@
+/*
+ * 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.xml;
 
 import org.apache.synapse.Processor;

Modified: incubator/synapse/trunk/java/test/org/apache/synapse/spi/injection/SendNowProcessorWithRuleTest.java
URL: http://svn.apache.org/viewcvs/incubator/synapse/trunk/java/test/org/apache/synapse/spi/injection/SendNowProcessorWithRuleTest.java?rev=376965&r1=376964&r2=376965&view=diff
==============================================================================
--- incubator/synapse/trunk/java/test/org/apache/synapse/spi/injection/SendNowProcessorWithRuleTest.java (original)
+++ incubator/synapse/trunk/java/test/org/apache/synapse/spi/injection/SendNowProcessorWithRuleTest.java Sat Feb 11 02:48:34 2006
@@ -1,3 +1,19 @@
+/*
+ * 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.spi.injection;
 
 import junit.framework.TestCase;



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