[seam-commits] Seam SVN: r12733 - in modules/jms/trunk: impl/src/main/java/org/jboss/seam/jms and 1 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Sat May 15 14:38:06 EDT 2010


Author: jganoff
Date: 2010-05-15 14:38:06 -0400 (Sat, 15 May 2010)
New Revision: 12733

Added:
   modules/jms/trunk/impl/src/main/java/org/jboss/seam/jms/annotations/
   modules/jms/trunk/impl/src/main/java/org/jboss/seam/jms/annotations/Module.java
Removed:
   modules/jms/trunk/api/src/main/java/org/jboss/seam/jms/annotations/Module.java
Log:
Moved @Module to implementation package - it is designed for internal use.

Deleted: modules/jms/trunk/api/src/main/java/org/jboss/seam/jms/annotations/Module.java
===================================================================
--- modules/jms/trunk/api/src/main/java/org/jboss/seam/jms/annotations/Module.java	2010-05-15 18:37:34 UTC (rev 12732)
+++ modules/jms/trunk/api/src/main/java/org/jboss/seam/jms/annotations/Module.java	2010-05-15 18:38:06 UTC (rev 12733)
@@ -1,47 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2010, Red Hat, Inc., and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- * 
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- * 
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- * 
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.seam.jms.annotations;
-
-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.Retention;
-import java.lang.annotation.Target;
-
-import javax.inject.Qualifier;
-
-/**
- * General Module Qualifier to prevent contamination of environment with 
- * {@code @Producer}s of common types.
- *  (e.g. {@code ConnectionFactory}, {@code InitialContext}, ...)
- * 
- * @author Jordan Ganoff
- */
- at Qualifier
- at Target( { FIELD, METHOD, TYPE, PARAMETER })
- at Retention(RUNTIME)
-public @interface Module
-{
-}

Copied: modules/jms/trunk/impl/src/main/java/org/jboss/seam/jms/annotations/Module.java (from rev 12730, modules/jms/trunk/api/src/main/java/org/jboss/seam/jms/annotations/Module.java)
===================================================================
--- modules/jms/trunk/impl/src/main/java/org/jboss/seam/jms/annotations/Module.java	                        (rev 0)
+++ modules/jms/trunk/impl/src/main/java/org/jboss/seam/jms/annotations/Module.java	2010-05-15 18:38:06 UTC (rev 12733)
@@ -0,0 +1,47 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * 
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ * 
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.seam.jms.annotations;
+
+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.Retention;
+import java.lang.annotation.Target;
+
+import javax.inject.Qualifier;
+
+/**
+ * General Module Qualifier to prevent contamination of environment with 
+ * {@code @Producer}s of common types.
+ *  (e.g. {@code ConnectionFactory}, {@code InitialContext}, ...)
+ * 
+ * @author Jordan Ganoff
+ */
+ at Qualifier
+ at Target( { FIELD, METHOD, TYPE, PARAMETER })
+ at Retention(RUNTIME)
+public @interface Module
+{
+}



More information about the seam-commits mailing list