[seam-commits] Seam SVN: r13820 - modules/xml/trunk/impl/src/main/java/org/jboss/seam/xml/core.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Sat Oct 9 20:27:40 EDT 2010


Author: swd847
Date: 2010-10-09 20:27:40 -0400 (Sat, 09 Oct 2010)
New Revision: 13820

Added:
   modules/xml/trunk/impl/src/main/java/org/jboss/seam/xml/core/XmlConfiguredBeanLiteral.java
Log:
oops


Added: modules/xml/trunk/impl/src/main/java/org/jboss/seam/xml/core/XmlConfiguredBeanLiteral.java
===================================================================
--- modules/xml/trunk/impl/src/main/java/org/jboss/seam/xml/core/XmlConfiguredBeanLiteral.java	                        (rev 0)
+++ modules/xml/trunk/impl/src/main/java/org/jboss/seam/xml/core/XmlConfiguredBeanLiteral.java	2010-10-10 00:27:40 UTC (rev 13820)
@@ -0,0 +1,31 @@
+/*
+ * 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.xml.core;
+
+import javax.enterprise.util.AnnotationLiteral;
+
+public class XmlConfiguredBeanLiteral extends AnnotationLiteral<XmlConfiguredBean> implements XmlConfiguredBean
+{
+   private static final long serialVersionUID = 2812698113865428827L;
+
+   public static XmlConfiguredBeanLiteral INSTANCE = new XmlConfiguredBeanLiteral();
+}



More information about the seam-commits mailing list