You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2007/07/18 21:51:29 UTC

svn commit: r557373 - /myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/

Author: matzew
Date: Wed Jul 18 12:51:27 2007
New Revision: 557373

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

Modified:
    myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/AllAnnotationLifecycleProvider.java
    myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/DefaultLifecycleProviderFactory.java
    myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/DiscoverableLifecycleProvider.java
    myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/LifecycleProviderFactory.java
    myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/NoAnnotationLifecyleProvider.java
    myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/NoInjectionAnnotationLifecycleProvider.java
    myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/ResourceAnnotationLifecycleProvider.java
    myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/TomcatAnnotationLifecycleProvider.java

Modified: myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/AllAnnotationLifecycleProvider.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/AllAnnotationLifecycleProvider.java?view=diff&rev=557373&r1=557372&r2=557373
==============================================================================
--- myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/AllAnnotationLifecycleProvider.java (original)
+++ myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/AllAnnotationLifecycleProvider.java Wed Jul 18 12:51:27 2007
@@ -1,5 +1,3 @@
-package org.apache.myfaces.config.annotation;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -16,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+package org.apache.myfaces.config.annotation;
 
 import javax.naming.NamingException;
 import javax.naming.Context;

Modified: myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/DefaultLifecycleProviderFactory.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/DefaultLifecycleProviderFactory.java?view=diff&rev=557373&r1=557372&r2=557373
==============================================================================
--- myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/DefaultLifecycleProviderFactory.java (original)
+++ myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/DefaultLifecycleProviderFactory.java Wed Jul 18 12:51:27 2007
@@ -1,5 +1,3 @@
-package org.apache.myfaces.config.annotation;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -17,6 +15,7 @@
  * limitations under the License.
  */
 
+package org.apache.myfaces.config.annotation;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;

Modified: myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/DiscoverableLifecycleProvider.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/DiscoverableLifecycleProvider.java?view=diff&rev=557373&r1=557372&r2=557373
==============================================================================
--- myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/DiscoverableLifecycleProvider.java (original)
+++ myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/DiscoverableLifecycleProvider.java Wed Jul 18 12:51:27 2007
@@ -1,12 +1,26 @@
+/*
+ * 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.myfaces.config.annotation;
 
 /**
- * Created by IntelliJ IDEA.
- * User: bommel
- * Date: Mar 13, 2007
- * Time: 10:09:38 PM
+ * @author bommel
  */
 public interface DiscoverableLifecycleProvider extends LifecycleProvider
 {
-    public boolean isAvailable();
+    boolean isAvailable();
 }

Modified: myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/LifecycleProviderFactory.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/LifecycleProviderFactory.java?view=diff&rev=557373&r1=557372&r2=557373
==============================================================================
--- myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/LifecycleProviderFactory.java (original)
+++ myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/LifecycleProviderFactory.java Wed Jul 18 12:51:27 2007
@@ -1,5 +1,3 @@
-package org.apache.myfaces.config.annotation;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -16,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+package org.apache.myfaces.config.annotation;
 
 import org.apache.commons.discovery.tools.DiscoverSingleton;
 

Modified: myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/NoAnnotationLifecyleProvider.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/NoAnnotationLifecyleProvider.java?view=diff&rev=557373&r1=557372&r2=557373
==============================================================================
--- myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/NoAnnotationLifecyleProvider.java (original)
+++ myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/NoAnnotationLifecyleProvider.java Wed Jul 18 12:51:27 2007
@@ -1,5 +1,3 @@
-package org.apache.myfaces.config.annotation;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -16,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+package org.apache.myfaces.config.annotation;
 
 import org.apache.myfaces.shared_impl.util.ClassUtils;
 

Modified: myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/NoInjectionAnnotationLifecycleProvider.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/NoInjectionAnnotationLifecycleProvider.java?view=diff&rev=557373&r1=557372&r2=557373
==============================================================================
--- myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/NoInjectionAnnotationLifecycleProvider.java (original)
+++ myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/NoInjectionAnnotationLifecycleProvider.java Wed Jul 18 12:51:27 2007
@@ -1,5 +1,3 @@
-package org.apache.myfaces.config.annotation;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -16,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+package org.apache.myfaces.config.annotation;
 
 import org.apache.myfaces.shared_impl.util.ClassUtils;
 

Modified: myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/ResourceAnnotationLifecycleProvider.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/ResourceAnnotationLifecycleProvider.java?view=diff&rev=557373&r1=557372&r2=557373
==============================================================================
--- myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/ResourceAnnotationLifecycleProvider.java (original)
+++ myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/ResourceAnnotationLifecycleProvider.java Wed Jul 18 12:51:27 2007
@@ -1,5 +1,3 @@
-package org.apache.myfaces.config.annotation;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -16,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+package org.apache.myfaces.config.annotation;
 
 import javax.naming.NamingException;
 import javax.naming.Context;

Modified: myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/TomcatAnnotationLifecycleProvider.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/TomcatAnnotationLifecycleProvider.java?view=diff&rev=557373&r1=557372&r2=557373
==============================================================================
--- myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/TomcatAnnotationLifecycleProvider.java (original)
+++ myfaces/core/branches/1_2_1/impl/src/main/java/org/apache/myfaces/config/annotation/TomcatAnnotationLifecycleProvider.java Wed Jul 18 12:51:27 2007
@@ -1,5 +1,3 @@
-package org.apache.myfaces.config.annotation;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -16,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
+package org.apache.myfaces.config.annotation;
 
 import org.apache.myfaces.shared_impl.util.ClassUtils;
 import org.apache.commons.logging.Log;