Author: julien_viet
Date: 2010-02-26 04:55:44 -0500 (Fri, 26 Feb 2010)
New Revision: 1879
Added:
portal/trunk/component/portal/src/main/java/org/exoplatform/portal/mop/Visibility.java
Log:
fixing missing class
Added:
portal/trunk/component/portal/src/main/java/org/exoplatform/portal/mop/Visibility.java
===================================================================
---
portal/trunk/component/portal/src/main/java/org/exoplatform/portal/mop/Visibility.java
(rev 0)
+++
portal/trunk/component/portal/src/main/java/org/exoplatform/portal/mop/Visibility.java 2010-02-26
09:55:44 UTC (rev 1879)
@@ -0,0 +1,49 @@
+/*
+ * 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.portal.mop;
+
+/**
+ * @author <a href="mailto:julien.viet@exoplatform.com">Julien
Viet</a>
+ * @version $Revision$
+ */
+public enum Visibility
+{
+
+ /**
+ * The object is visible.
+ */
+ DISPLAYED,
+
+ /**
+ * The object is not visible.
+ */
+ HIDDEN,
+
+ /**
+ * The object visibility is defined by the validity in a related time range.
+ */
+ TEMPORAL,
+
+ /**
+ * The object visibility is system.
+ */
+ SYSTEM
+
+}