Author: julien_viet
Date: 2010-01-14 08:44:07 -0500 (Thu, 14 Jan 2010)
New Revision: 1293
Added:
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/annotations/Factory.java
Log:
and forgot also that one
Added:
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/annotations/Factory.java
===================================================================
---
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/annotations/Factory.java
(rev 0)
+++
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/annotations/Factory.java 2010-01-14
13:44:07 UTC (rev 1293)
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2009 eXo Platform SAS.
+ *
+ * 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.exoplatform.webui.application.replication.annotations;
+
+import org.exoplatform.webui.application.replication.factory.ObjectFactory;
+
+import java.lang.annotation.*;
+
+/**
+ * @author <a href="mailto:julien.viet@exoplatform.com">Julien
Viet</a>
+ * @version $Revision$
+ */
+(a)Target(ElementType.TYPE)
+(a)Retention(RetentionPolicy.RUNTIME)
+@Inherited
+public @interface Factory
+{
+
+ Class<? extends ObjectFactory<?, ?>> type();
+
+}