| 1,18 → 1,18 |
| /** |
| * Elastic Grid |
| * Copyright (C) 2008-2009 Elastic Grid, LLC. |
| * |
| * 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 Affero General Public License for more details. |
| * |
| * You should have received a copy of the GNU Affero General Public License |
| * Elastic Grid |
| * Copyright (C) 2008-2009 Elastic Grid, LLC. |
| * |
| * 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 Affero General Public License for more details. |
| * |
| * You should have received a copy of the GNU Affero General Public License |
| * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| |
| 29,19 → 29,18 |
| import org.restlet.resource.Representation; |
| import org.restlet.resource.ResourceException; |
| import org.restlet.resource.Variant; |
| import org.springframework.beans.factory.annotation.Autowired; |
| import java.util.Arrays; |
| |
| public class ServiceResource extends WadlResource { |
| private String clusterName; |
| private String applicationName; |
| private String serviceName; |
| @Autowired |
| private ClusterManager clusterManager; |
| |
| @Override |
| public void init(Context context, Request request, Response response) { |
| super.init(context, request, response); |
| clusterManager = RestJSB.getClusterManager(); |
| // Allow modifications of this resource via POST requests |
| setModifiable(false); |
| setAutoDescribed(true); |