[gatein-commits] gatein SVN: r556 - portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/serialize.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Nov 10 19:33:06 EST 2009


Author: julien_viet
Date: 2009-11-10 19:33:06 -0500 (Tue, 10 Nov 2009)
New Revision: 556

Added:
   portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/serialize/PortletApplication.java
Log:
forgot to commit one class


Added: portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/serialize/PortletApplication.java
===================================================================
--- portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/serialize/PortletApplication.java	                        (rev 0)
+++ portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/serialize/PortletApplication.java	2009-11-11 00:33:06 UTC (rev 556)
@@ -0,0 +1,47 @@
+/*
+ * Copyright (C) 2003-2007 eXo Platform SAS.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Affero General Public License
+ * as published by the Free Software Foundation; either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see<http://www.gnu.org/licenses/>.
+ */
+package org.exoplatform.portal.config.serialize;
+
+import org.exoplatform.portal.config.model.Application;
+import org.exoplatform.portal.config.model.ApplicationType;
+import org.exoplatform.portal.pom.data.ApplicationData;
+import org.exoplatform.portal.pom.spi.portlet.Preferences;
+
+/**
+ * We keep that subclass here to please JiBX crap.
+ *
+ * @author <a href="mailto:julien.viet at exoplatform.com">Julien Viet</a>
+ * @version $Revision$
+ */
+public class PortletApplication extends Application<Preferences>
+{
+
+   public PortletApplication(ApplicationData<Preferences> preferencesApplicationData)
+   {
+      super(preferencesApplicationData);
+   }
+
+   public PortletApplication(ApplicationType<Preferences> preferencesApplicationType, String storageId)
+   {
+      super(preferencesApplicationType, storageId);
+   }
+
+   public PortletApplication(ApplicationType<Preferences> preferencesApplicationType)
+   {
+      super(preferencesApplicationType);
+   }
+}



More information about the gatein-commits mailing list