You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by ge...@apache.org on 2009/01/27 21:14:09 UTC

svn commit: r738218 [2/2] - in /incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax: annotation/ context/ decorator/ event/ inject/ inject/manager/ interceptor/ webbeans/

Copied: incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/InterceptionType.java (from r738186, incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/InterceptionType.java)
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/InterceptionType.java?p2=incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/InterceptionType.java&p1=incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/InterceptionType.java&r1=738186&r2=738218&rev=738218&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/InterceptionType.java (original)
+++ incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/InterceptionType.java Tue Jan 27 20:14:07 2009
@@ -11,7 +11,7 @@
  * KIND, either express or implied. See the License for the specific language
  * governing permissions and limitations under the License.
  */
-package javax.webbeans.manager;
+package javax.inject.manager;
 
 public enum InterceptionType
 {

Copied: incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/Interceptor.java (from r738186, incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/Interceptor.java)
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/Interceptor.java?p2=incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/Interceptor.java&p1=incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/Interceptor.java&r1=738186&r2=738218&rev=738218&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/Interceptor.java (original)
+++ incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/Interceptor.java Tue Jan 27 20:14:07 2009
@@ -11,12 +11,13 @@
  * KIND, either express or implied. See the License for the specific language
  * governing permissions and limitations under the License.
  */
-package javax.webbeans.manager;
+package javax.inject.manager;
 
 import java.lang.annotation.Annotation;
 import java.lang.reflect.Method;
 import java.util.Set;
 
+
 public abstract class Interceptor extends Bean<Object>
 {
 

Copied: incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/Manager.java (from r738186, incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/Manager.java)
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/Manager.java?p2=incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/Manager.java&p1=incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/Manager.java&r1=738186&r2=738218&rev=738218&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/manager/Manager.java (original)
+++ incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/inject/manager/Manager.java Tue Jan 27 20:14:07 2009
@@ -11,16 +11,17 @@
  * KIND, either express or implied. See the License for the specific language
  * governing permissions and limitations under the License.
  */
-package javax.webbeans.manager;
+package javax.inject.manager;
 
 import java.lang.annotation.Annotation;
 import java.util.List;
 import java.util.Set;
 
-import javax.webbeans.InjectionPoint;
-import javax.webbeans.NonBinding;
-import javax.webbeans.Observer;
-import javax.webbeans.TypeLiteral;
+import javax.annotation.NonBinding;
+import javax.context.Context;
+import javax.context.CreationalContext;
+import javax.event.Observer;
+import javax.inject.TypeLiteral;
 
 /**
  * Resolution of the components contract of the <b>Web Beans Container</b>.

Copied: incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/interceptor/Interceptor.java (from r738186, incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Interceptor.java)
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/interceptor/Interceptor.java?p2=incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/interceptor/Interceptor.java&p1=incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Interceptor.java&r1=738186&r2=738218&rev=738218&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/Interceptor.java (original)
+++ incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/interceptor/Interceptor.java Tue Jan 27 20:14:07 2009
@@ -11,7 +11,7 @@
  * KIND, either express or implied. See the License for the specific language
  * governing permissions and limitations under the License.
  */
-package javax.webbeans;
+package javax.interceptor;
 
 import static java.lang.annotation.ElementType.TYPE;
 import static java.lang.annotation.RetentionPolicy.RUNTIME;
@@ -19,6 +19,8 @@
 import java.lang.annotation.Retention;
 import java.lang.annotation.Target;
 
+import javax.annotation.Stereotype;
+
 @Retention(RUNTIME)
 @Target(TYPE)
 @Stereotype

Copied: incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/interceptor/InterceptorBindingType.java (from r738186, incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/InterceptorBindingType.java)
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/interceptor/InterceptorBindingType.java?p2=incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/interceptor/InterceptorBindingType.java&p1=incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/InterceptorBindingType.java&r1=738186&r2=738218&rev=738218&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/webbeans/InterceptorBindingType.java (original)
+++ incubator/openwebbeans/trunk/webbeans-api/src/main/java/javax/interceptor/InterceptorBindingType.java Tue Jan 27 20:14:07 2009
@@ -11,7 +11,7 @@
  * KIND, either express or implied. See the License for the specific language
  * governing permissions and limitations under the License.
  */
-package javax.webbeans;
+package javax.interceptor;
 
 import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
 import static java.lang.annotation.RetentionPolicy.RUNTIME;