You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by lh...@apache.org on 2009/03/30 18:58:00 UTC

svn commit: r760044 - in /incubator/jsecurity/trunk/web/src/main/java/org/apache/ki/web/filter/authz: PortFilter.java SslFilter.java

Author: lhazlewood
Date: Mon Mar 30 16:57:59 2009
New Revision: 760044

URL: http://svn.apache.org/viewvc?rev=760044&view=rev
Log:
added Apache license and @since information

Modified:
    incubator/jsecurity/trunk/web/src/main/java/org/apache/ki/web/filter/authz/PortFilter.java
    incubator/jsecurity/trunk/web/src/main/java/org/apache/ki/web/filter/authz/SslFilter.java

Modified: incubator/jsecurity/trunk/web/src/main/java/org/apache/ki/web/filter/authz/PortFilter.java
URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/web/src/main/java/org/apache/ki/web/filter/authz/PortFilter.java?rev=760044&r1=760043&r2=760044&view=diff
==============================================================================
--- incubator/jsecurity/trunk/web/src/main/java/org/apache/ki/web/filter/authz/PortFilter.java (original)
+++ incubator/jsecurity/trunk/web/src/main/java/org/apache/ki/web/filter/authz/PortFilter.java Mon Mar 30 16:57:59 2009
@@ -1,3 +1,21 @@
+/*
+ * 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.ki.web.filter.authz;
 
 import org.apache.ki.config.ConfigurationException;
@@ -13,7 +31,7 @@
  * A Filter that requires the request to be on a specific port, and if not, redirects to the same URL on that port.
  *
  * @author Les Hazlewood
- * @since Mar 30, 2009 10:46:21 AM
+ * @since 1.0
  */
 public class PortFilter extends AuthorizationFilter {
 

Modified: incubator/jsecurity/trunk/web/src/main/java/org/apache/ki/web/filter/authz/SslFilter.java
URL: http://svn.apache.org/viewvc/incubator/jsecurity/trunk/web/src/main/java/org/apache/ki/web/filter/authz/SslFilter.java?rev=760044&r1=760043&r2=760044&view=diff
==============================================================================
--- incubator/jsecurity/trunk/web/src/main/java/org/apache/ki/web/filter/authz/SslFilter.java (original)
+++ incubator/jsecurity/trunk/web/src/main/java/org/apache/ki/web/filter/authz/SslFilter.java Mon Mar 30 16:57:59 2009
@@ -1,3 +1,21 @@
+/*
+ * 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.ki.web.filter.authz;
 
 /**
@@ -10,7 +28,7 @@
  * </pre>
  *
  * @author Les Hazlewood
- * @since Mar 30, 2009 12:16:14 PM
+ * @since 1.0
  */
 public class SslFilter extends PortFilter {