[exo-jcr-commits] exo-jcr SVN: r1774 - in kernel/trunk/exo.kernel.container/src/main/java/org/exoplatform/management: management and 1 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Feb 12 10:17:38 EST 2010


Author: julien_viet
Date: 2010-02-12 10:17:37 -0500 (Fri, 12 Feb 2010)
New Revision: 1774

Added:
   kernel/trunk/exo.kernel.container/src/main/java/org/exoplatform/management/management/
   kernel/trunk/exo.kernel.container/src/main/java/org/exoplatform/management/management/annotations/
   kernel/trunk/exo.kernel.container/src/main/java/org/exoplatform/management/management/annotations/RESTEndpoint.java
Log:
EXOJCR-506 : Define the RESTEndpoint annotation for exposing a managed service as a REST endpoint


Added: kernel/trunk/exo.kernel.container/src/main/java/org/exoplatform/management/management/annotations/RESTEndpoint.java
===================================================================
--- kernel/trunk/exo.kernel.container/src/main/java/org/exoplatform/management/management/annotations/RESTEndpoint.java	                        (rev 0)
+++ kernel/trunk/exo.kernel.container/src/main/java/org/exoplatform/management/management/annotations/RESTEndpoint.java	2010-02-12 15:17:37 UTC (rev 1774)
@@ -0,0 +1,46 @@
+/*
+ * Copyright (C) 2010 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.management.management.annotations;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/**
+ * Annotates a managed service to define its exposure as a rest endpoint. The managed service must already be annotated
+ * with {@link org.exoplatform.management.annotations.Managed}.
+ *
+ * @author <a href="mailto:julien.viet at exoplatform.com">Julien Viet</a>
+ * @version $Revision$
+ */
+ at Retention(RetentionPolicy.RUNTIME)
+ at Target(ElementType.TYPE)
+public @interface RESTEndpoint
+{
+
+   /**
+    * Returns the rest path of the managed object.
+    *
+    * @return the path
+    */
+   String path();
+
+}



More information about the exo-jcr-commits mailing list