diff options
author | skygo <skygo@unknown> | 2013-04-29 22:38:11 +0000 |
---|---|---|
committer | skygo <skygo@unknown> | 2013-04-29 22:38:11 +0000 |
commit | a98c867b7fc38b83f0c0452d811c0edb20c8e4ee (patch) | |
tree | 2f5839fb6774c109532910702787c53d916df682 /archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src | |
parent | 3875293d16e114de4862952977ae67a4b6d7a7a6 (diff) | |
download | archiva-a98c867b7fc38b83f0c0452d811c0edb20c8e4ee.tar.gz archiva-a98c867b7fc38b83f0c0452d811c0edb20c8e4ee.zip |
Add a service and use ajax to build menus
git-svn-id: https://svn.apache.org/repos/asf/archiva/branches/archiva-MRM-1756@1477395 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src')
-rw-r--r-- | archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/PluginsService.java | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/PluginsService.java b/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/PluginsService.java new file mode 100644 index 000000000..27f8df0a6 --- /dev/null +++ b/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/PluginsService.java @@ -0,0 +1,45 @@ +package org.apache.archiva.rest.api.services; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import org.apache.archiva.redback.authorization.RedbackAuthorization; + +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; + +/** + * contains some services for plugins + * + * @author Eric Barboni + * @since 1.4-M4 + */ +@Path( "/pluginsService/" ) +public interface PluginsService +{ + + @Path( "getAdminPlugins" ) + @GET + @Produces( { MediaType.TEXT_PLAIN } ) + @RedbackAuthorization( noRestriction = true ) + String getAdminPlugins( ) + throws ArchivaRestServiceException; + +} |