1 /*******************************************************************************
2 * Copyright (c) 2012-2013 University of Stuttgart.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * and the Apache License 2.0 which both accompany this distribution,
6 * and are available at http://www.eclipse.org/legal/epl-v10.html
7 * and http://www.apache.org/licenses/LICENSE-2.0
10 * Oliver Kopp - initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.winery.repository.resources.admin;
14 import javax.ws.rs.GET;
15 import javax.ws.rs.Path;
16 import javax.ws.rs.Produces;
17 import javax.ws.rs.core.MediaType;
19 import org.eclipse.winery.repository.resources.admin.types.ConstraintTypesManager;
20 import org.eclipse.winery.repository.resources.admin.types.PlanLanguagesManager;
21 import org.eclipse.winery.repository.resources.admin.types.PlanTypesManager;
23 import com.sun.jersey.api.view.Viewable;
25 public class AdminTopResource {
28 @Produces(MediaType.TEXT_HTML)
29 public Viewable getHTML() {
30 return new Viewable("/jsp/admin/adminindex.jsp", this);
34 public NamespacesResource getNamespacesResource() {
35 return NamespacesResource.INSTANCE;
39 public RepositoryAdminResource getRepositoryAdminResource() {
40 return new RepositoryAdminResource();
43 @Path("planlanguages/")
44 public PlanLanguagesManager getPlanLanguagesResource() {
45 return PlanLanguagesManager.INSTANCE;
49 public PlanTypesManager getPlanTypesResource() {
50 return PlanTypesManager.INSTANCE;
53 @Path("constrainttypes/")
54 public ConstraintTypesManager getConstraintTypesManager() {
55 return ConstraintTypesManager.INSTANCE;