/* * Copyright 2013 the original author or authors. * * Licensed 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. */ package org.cloudfoundry.java.test.controller; import org.cloudfoundry.java.test.core.HealthUtils; import org.cloudfoundry.java.test.core.MemoryUtils; import org.cloudfoundry.java.test.core.RuntimeUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; import javax.servlet.http.HttpServletRequest; import java.util.List; import java.util.Map; @RestController public final class ApplicationController { private final HealthUtils healthUtils; private final MemoryUtils memoryUtils; private final RuntimeUtils runtimeUtils; @Autowired public ApplicationController(HealthUtils healthUtils, MemoryUtils memoryUtils, RuntimeUtils runtimeUtils) { this.healthUtils = healthUtils; this.memoryUtils = memoryUtils; this.runtimeUtils = runtimeUtils; } @RequestMapping(method = RequestMethod.GET, value = "") String health() { return this.healthUtils.health(); } @RequestMapping(method = RequestMethod.GET, value = "/class-path") List<String> classPath() { return this.runtimeUtils.classPath(); } @RequestMapping(method = RequestMethod.GET, value = "/environment-variables") Map<String, String> environmentVariables() { return this.runtimeUtils.environmentVariables(); } @RequestMapping(method = RequestMethod.POST, value = "/out-of-memory") void outOfMemory() { this.memoryUtils.outOfMemory(); } @RequestMapping(method = RequestMethod.GET, value = "/request-headers") Map<String, List<String>> requestHeaders(HttpServletRequest request) { return this.runtimeUtils.requestHeaders(request); } @RequestMapping(method = RequestMethod.GET, value = "/input-arguments") List<String> inputArguments() { return this.runtimeUtils.inputArguments(); } @RequestMapping(method = RequestMethod.GET, value = "/system-properties") Map<Object, Object> systemProperties() { return this.runtimeUtils.systemProperties(); } @RequestMapping(method = RequestMethod.GET, value = "/security-providers") List<String> securityProviders() { return this.runtimeUtils.securityProviders(); } }