[webbeans-commits] Webbeans SVN: r3620 - ri/trunk/api/src/main/java/javax/enterprise/inject.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Mon Aug 31 02:05:30 EDT 2009


Author: pete.muir at jboss.org
Date: 2009-08-31 02:05:29 -0400 (Mon, 31 Aug 2009)
New Revision: 3620

Added:
   ri/trunk/api/src/main/java/javax/enterprise/inject/Default.java
Log:
Add missing file

Added: ri/trunk/api/src/main/java/javax/enterprise/inject/Default.java
===================================================================
--- ri/trunk/api/src/main/java/javax/enterprise/inject/Default.java	                        (rev 0)
+++ ri/trunk/api/src/main/java/javax/enterprise/inject/Default.java	2009-08-31 06:05:29 UTC (rev 3620)
@@ -0,0 +1,44 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 javax.enterprise.inject;
+
+import static java.lang.annotation.ElementType.FIELD;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.ElementType.PARAMETER;
+import static java.lang.annotation.ElementType.TYPE;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.Retention;
+import java.lang.annotation.Target;
+
+import javax.inject.Qualifier;
+
+/**
+ * The default binding type.
+ * 
+ * @author Pete Muir
+ */
+
+ at Target( { TYPE, METHOD, PARAMETER, FIELD })
+ at Retention(RUNTIME)
+ at Documented
+ at Qualifier
+public @interface Default
+{
+}


Property changes on: ri/trunk/api/src/main/java/javax/enterprise/inject/Default.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain




More information about the weld-commits mailing list