Author: ruchithf
Date: Sat Oct 21 20:12:53 2006
New Revision: 466620

URL: http://svn.apache.org/viewvc?view=rev&rev=466620
Log:
Added some missing licence headers with the help of arat ;-) - 
http://code.google.com/p/arat/


Modified:
    
webservices/axis2/branches/java/1_1/modules/adb-codegen/src/org/apache/axis2/schema/typemap/CTypeMap.java
    
webservices/axis2/branches/java/1_1/modules/adb-codegen/src/org/apache/axis2/schema/writer/CStructWriter.java
    
webservices/axis2/branches/java/1_1/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/CTypeInfo.java
    
webservices/axis2/branches/java/1_1/modules/codegen/src/org/apache/axis2/wsdl/codegen/writer/CServiceXMLWriter.java
    
webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/transport/SimpleAxis2Server.java
    
webservices/axis2/branches/java/1_1/modules/kernel/test/org/apache/axis2/addressing/wsdl/WSDL11ActionHelperTest.java
    
webservices/axis2/branches/java/1_1/modules/rahas/src/org/apache/rahas/errors.properties
    
webservices/axis2/branches/java/1_1/modules/samples/FaultHandling/client/src/example/BankClient.java
    
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/configuration/FilterBean.java
    
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/configuration/SubscriberBean.java
    
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/eventing/subscribers/EventingSubscriber.java
    
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/eventing/subscribers/EventingTopicSubscriber.java
    
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/filters/EmptyFilter.java
    
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/subscribers/Subscriber.java
    
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/CompositeSubscriberTest.java
    
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/ConfigurationManagerTest.java
    
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/EventingExpirationTypesTest.java
    
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/EventingSubscripitonProcessorTest.java
    
webservices/axis2/branches/java/1_1/modules/secpolicy/src/org/apache/ws/secpolicy/Constants.java
    
webservices/axis2/branches/java/1_1/modules/security/src/org/apache/rampart/errors.properties

Modified: 
webservices/axis2/branches/java/1_1/modules/adb-codegen/src/org/apache/axis2/schema/typemap/CTypeMap.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/adb-codegen/src/org/apache/axis2/schema/typemap/CTypeMap.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/adb-codegen/src/org/apache/axis2/schema/typemap/CTypeMap.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/adb-codegen/src/org/apache/axis2/schema/typemap/CTypeMap.java
 Sat Oct 21 20:12:53 2006
@@ -1,12 +1,23 @@
+/*
+ * 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.axis2.schema.typemap;
 
-import org.apache.axis2.schema.SchemaConstants;
-import org.apache.axis2.databinding.types.*;
+import org.apache.axis2.wsdl.codegen.emitter.CTypeInfo;
 
-import javax.xml.namespace.QName;
 import java.util.Map;
-import java.util.HashMap;
-import org.apache.axis2.wsdl.codegen.emitter.CTypeInfo;
 
 /**
  * The java type map. uses a static map for caching

Modified: 
webservices/axis2/branches/java/1_1/modules/adb-codegen/src/org/apache/axis2/schema/writer/CStructWriter.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/adb-codegen/src/org/apache/axis2/schema/writer/CStructWriter.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/adb-codegen/src/org/apache/axis2/schema/writer/CStructWriter.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/adb-codegen/src/org/apache/axis2/schema/writer/CStructWriter.java
 Sat Oct 21 20:12:53 2006
@@ -1,3 +1,18 @@
+/*
+ * 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.axis2.schema.writer;
 
 import org.w3c.dom.Document;

Modified: 
webservices/axis2/branches/java/1_1/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/CTypeInfo.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/CTypeInfo.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/CTypeInfo.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/CTypeInfo.java
 Sat Oct 21 20:12:53 2006
@@ -1,3 +1,18 @@
+/*
+ * 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.axis2.wsdl.codegen.emitter;
 
 import org.apache.axis2.databinding.types.*;

Modified: 
webservices/axis2/branches/java/1_1/modules/codegen/src/org/apache/axis2/wsdl/codegen/writer/CServiceXMLWriter.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/codegen/src/org/apache/axis2/wsdl/codegen/writer/CServiceXMLWriter.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/codegen/src/org/apache/axis2/wsdl/codegen/writer/CServiceXMLWriter.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/codegen/src/org/apache/axis2/wsdl/codegen/writer/CServiceXMLWriter.java
 Sat Oct 21 20:12:53 2006
@@ -1,3 +1,18 @@
+/*
+ * 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.axis2.wsdl.codegen.writer;
 
 import org.apache.axis2.util.FileWriter;

Modified: 
webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/transport/SimpleAxis2Server.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/transport/SimpleAxis2Server.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/transport/SimpleAxis2Server.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/transport/SimpleAxis2Server.java
 Sat Oct 21 20:12:53 2006
@@ -1,26 +1,34 @@
-package org.apache.axis2.transport;
-
-import java.io.File;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
+/*
+ * 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.
+ */
 
-import javax.xml.namespace.QName;
+package org.apache.axis2.transport;
 
-import org.apache.axis2.Constants;
 import org.apache.axis2.context.ConfigurationContext;
 import org.apache.axis2.context.ConfigurationContextFactory;
-import org.apache.axis2.description.TransportInDescription;
 import org.apache.axis2.engine.ListenerManager;
 import org.apache.axis2.transport.http.SimpleHTTPServer;
 import org.apache.axis2.util.CommandLineOption;
 import org.apache.axis2.util.CommandLineOptionParser;
-import org.apache.axis2.util.OptionsParser;
 import org.apache.axis2.util.OptionsValidator;
-import org.apache.axis2.util.CommandLineOptionConstants.Java2WSDLConstants;
-import org.apache.axis2.util.CommandLineOptionConstants.WSDL2JavaConstants;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
+
+import java.io.File;
+import java.util.List;
+import java.util.Map;
 
 public class SimpleAxis2Server {
 

Modified: 
webservices/axis2/branches/java/1_1/modules/kernel/test/org/apache/axis2/addressing/wsdl/WSDL11ActionHelperTest.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/kernel/test/org/apache/axis2/addressing/wsdl/WSDL11ActionHelperTest.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/kernel/test/org/apache/axis2/addressing/wsdl/WSDL11ActionHelperTest.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/kernel/test/org/apache/axis2/addressing/wsdl/WSDL11ActionHelperTest.java
 Sat Oct 21 20:12:53 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.axis2.addressing.wsdl;
 
 import java.io.File;

Modified: 
webservices/axis2/branches/java/1_1/modules/rahas/src/org/apache/rahas/errors.properties
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/rahas/src/org/apache/rahas/errors.properties?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/rahas/src/org/apache/rahas/errors.properties
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/rahas/src/org/apache/rahas/errors.properties
 Sat Oct 21 20:12:53 2006
@@ -1,3 +1,20 @@
+# -------------------------------------------------------------------
+# Copyright 2001-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.
+# -------------------------------------------------------------------
+
+
 InvalidRequest = The request was invalid or malformed, \"{0}\"
 FailedAuthentication = Authentication failed
 RequestFailed = The specified request failed

Modified: 
webservices/axis2/branches/java/1_1/modules/samples/FaultHandling/client/src/example/BankClient.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/samples/FaultHandling/client/src/example/BankClient.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/samples/FaultHandling/client/src/example/BankClient.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/samples/FaultHandling/client/src/example/BankClient.java
 Sat Oct 21 20:12:53 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 example;
 
 import java.rmi.RemoteException;

Modified: 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/configuration/FilterBean.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/configuration/FilterBean.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/configuration/FilterBean.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/configuration/FilterBean.java
 Sat Oct 21 20:12:53 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.savan.configuration;
 
 public class FilterBean {

Modified: 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/configuration/SubscriberBean.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/configuration/SubscriberBean.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/configuration/SubscriberBean.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/configuration/SubscriberBean.java
 Sat Oct 21 20:12:53 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.savan.configuration;
 
 public class SubscriberBean {

Modified: 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/eventing/subscribers/EventingSubscriber.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/eventing/subscribers/EventingSubscriber.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/eventing/subscribers/EventingSubscriber.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/eventing/subscribers/EventingSubscriber.java
 Sat Oct 21 20:12:53 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.savan.eventing.subscribers;
 
 import org.apache.axis2.addressing.EndpointReference;

Modified: 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/eventing/subscribers/EventingTopicSubscriber.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/eventing/subscribers/EventingTopicSubscriber.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/eventing/subscribers/EventingTopicSubscriber.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/eventing/subscribers/EventingTopicSubscriber.java
 Sat Oct 21 20:12:53 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.savan.eventing.subscribers;
 
 import org.apache.axis2.addressing.EndpointReference;

Modified: 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/filters/EmptyFilter.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/filters/EmptyFilter.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/filters/EmptyFilter.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/filters/EmptyFilter.java
 Sat Oct 21 20:12:53 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.savan.filters;
 
 import org.apache.axiom.om.OMNode;

Modified: 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/subscribers/Subscriber.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/subscribers/Subscriber.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/subscribers/Subscriber.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/savan/src/org/apache/savan/subscribers/Subscriber.java
 Sat Oct 21 20:12:53 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.savan.subscribers;
 
 import java.util.Date;

Modified: 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/CompositeSubscriberTest.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/CompositeSubscriberTest.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/CompositeSubscriberTest.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/CompositeSubscriberTest.java
 Sat Oct 21 20:12:53 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.axis2.savan;
 
 import junit.framework.TestCase;

Modified: 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/ConfigurationManagerTest.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/ConfigurationManagerTest.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/ConfigurationManagerTest.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/ConfigurationManagerTest.java
 Sat Oct 21 20:12:53 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.axis2.savan;
 
 import java.io.File;

Modified: 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/EventingExpirationTypesTest.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/EventingExpirationTypesTest.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/EventingExpirationTypesTest.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/EventingExpirationTypesTest.java
 Sat Oct 21 20:12:53 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.axis2.savan;
 
 import java.io.File;

Modified: 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/EventingSubscripitonProcessorTest.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/EventingSubscripitonProcessorTest.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/EventingSubscripitonProcessorTest.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/savan/test/org/apache/axis2/savan/EventingSubscripitonProcessorTest.java
 Sat Oct 21 20:12:53 2006
@@ -1,12 +1,20 @@
-package org.apache.axis2.savan;
-
-import java.io.File;
-import java.io.IOException;
-import java.util.Date;
+/*
+ * 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.
+ */
 
-import javax.xml.namespace.QName;
-
-import junit.framework.TestCase;
+package org.apache.axis2.savan;
 
 import org.apache.axiom.soap.SOAPEnvelope;
 import org.apache.axis2.addressing.EndpointReference;
@@ -22,12 +30,19 @@
 import org.apache.savan.configuration.Protocol;
 import org.apache.savan.eventing.EventingConstants;
 import org.apache.savan.eventing.EventingSubscriptionProcessor;
-import org.apache.savan.eventing.EventingUtilFactory;
 import org.apache.savan.eventing.subscribers.EventingLeafSubscriber;
 import org.apache.savan.storage.DefaultSubscriberStore;
 import org.apache.savan.storage.SubscriberStore;
 import org.apache.savan.subscription.ExpirationBean;
 import org.apache.savan.util.CommonUtil;
+
+import javax.xml.namespace.QName;
+
+import java.io.File;
+import java.io.IOException;
+import java.util.Date;
+
+import junit.framework.TestCase;
 
 public class EventingSubscripitonProcessorTest extends TestCase {
 

Modified: 
webservices/axis2/branches/java/1_1/modules/secpolicy/src/org/apache/ws/secpolicy/Constants.java
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/secpolicy/src/org/apache/ws/secpolicy/Constants.java?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/secpolicy/src/org/apache/ws/secpolicy/Constants.java
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/secpolicy/src/org/apache/ws/secpolicy/Constants.java
 Sat Oct 21 20:12:53 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.ws.secpolicy;
 
 import javax.xml.namespace.QName;

Modified: 
webservices/axis2/branches/java/1_1/modules/security/src/org/apache/rampart/errors.properties
URL: 
http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/security/src/org/apache/rampart/errors.properties?view=diff&rev=466620&r1=466619&r2=466620
==============================================================================
--- 
webservices/axis2/branches/java/1_1/modules/security/src/org/apache/rampart/errors.properties
 (original)
+++ 
webservices/axis2/branches/java/1_1/modules/security/src/org/apache/rampart/errors.properties
 Sat Oct 21 20:12:53 2006
@@ -1,3 +1,20 @@
+# -------------------------------------------------------------------
+# Copyright 2001-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.
+# -------------------------------------------------------------------
+
+
 missingConfiguration = Missing or malformed configuration: \"{0}\"
 expectedParameterMissing = Expected parameter missing : \"{0}\" 
 missingScopeValue = Missing or incorrect scope value



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to