You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2013/02/01 19:40:13 UTC

svn commit: r1441579 - /geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/

Author: gawor
Date: Fri Feb  1 18:40:13 2013
New Revision: 1441579

URL: http://svn.apache.org/viewvc?rev=1441579&view=rev
Log:
add license headers

Modified:
    geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/AbstractVerifier.java
    geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/AllowAllHostnameVerifier.java
    geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/BrowserCompatHostnameVerifier.java
    geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/InetAddressUtils.java
    geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/X509HostnameVerifier.java

Modified: geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/AbstractVerifier.java
URL: http://svn.apache.org/viewvc/geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/AbstractVerifier.java?rev=1441579&r1=1441578&r2=1441579&view=diff
==============================================================================
--- geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/AbstractVerifier.java (original)
+++ geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/AbstractVerifier.java Fri Feb  1 18:40:13 2013
@@ -1,3 +1,20 @@
+/**
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You 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.commons.httpclient.protocol;
 
 import java.io.IOException;

Modified: geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/AllowAllHostnameVerifier.java
URL: http://svn.apache.org/viewvc/geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/AllowAllHostnameVerifier.java?rev=1441579&r1=1441578&r2=1441579&view=diff
==============================================================================
--- geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/AllowAllHostnameVerifier.java (original)
+++ geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/AllowAllHostnameVerifier.java Fri Feb  1 18:40:13 2013
@@ -1,3 +1,20 @@
+/**
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You 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.commons.httpclient.protocol;
 
 import java.io.IOException;

Modified: geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/BrowserCompatHostnameVerifier.java
URL: http://svn.apache.org/viewvc/geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/BrowserCompatHostnameVerifier.java?rev=1441579&r1=1441578&r2=1441579&view=diff
==============================================================================
--- geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/BrowserCompatHostnameVerifier.java (original)
+++ geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/BrowserCompatHostnameVerifier.java Fri Feb  1 18:40:13 2013
@@ -1,3 +1,20 @@
+/**
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You 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.commons.httpclient.protocol;
 
 import javax.net.ssl.SSLException;

Modified: geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/InetAddressUtils.java
URL: http://svn.apache.org/viewvc/geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/InetAddressUtils.java?rev=1441579&r1=1441578&r2=1441579&view=diff
==============================================================================
--- geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/InetAddressUtils.java (original)
+++ geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/InetAddressUtils.java Fri Feb  1 18:40:13 2013
@@ -1,3 +1,20 @@
+/**
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You 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.commons.httpclient.protocol;
 
 import java.util.regex.Pattern;

Modified: geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/X509HostnameVerifier.java
URL: http://svn.apache.org/viewvc/geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/X509HostnameVerifier.java?rev=1441579&r1=1441578&r2=1441579&view=diff
==============================================================================
--- geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/X509HostnameVerifier.java (original)
+++ geronimo/bundles/trunk/commons-httpclient/src/main/java/org/apache/commons/httpclient/protocol/X509HostnameVerifier.java Fri Feb  1 18:40:13 2013
@@ -1,3 +1,20 @@
+/**
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You 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.commons.httpclient.protocol;
 
 import javax.net.ssl.HostnameVerifier;