11 changed files with 293 additions and 27 deletions
@ -0,0 +1,54 @@
@@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright 2012-2018 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.springframework.boot.actuate.web.mappings; |
||||
|
||||
import org.springframework.asm.Type; |
||||
import org.springframework.web.method.HandlerMethod; |
||||
|
||||
/** |
||||
* A description of a {@link HandlerMethod}. |
||||
* |
||||
* @author Andy Wilkinson |
||||
* @since 2.0.0 |
||||
*/ |
||||
public class HandlerMethodDescription { |
||||
|
||||
private final String className; |
||||
|
||||
private final String name; |
||||
|
||||
private final String descriptor; |
||||
|
||||
public HandlerMethodDescription(HandlerMethod handlerMethod) { |
||||
this.name = handlerMethod.getMethod().getName(); |
||||
this.className = handlerMethod.getMethod().getDeclaringClass().getCanonicalName(); |
||||
this.descriptor = Type.getMethodDescriptor(handlerMethod.getMethod()); |
||||
} |
||||
|
||||
public String getName() { |
||||
return this.name; |
||||
} |
||||
|
||||
public String getDescriptor() { |
||||
return this.descriptor; |
||||
} |
||||
|
||||
public String getClassName() { |
||||
return this.className; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,61 @@
@@ -0,0 +1,61 @@
|
||||
/* |
||||
* Copyright 2012-2018 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.springframework.boot.actuate.web.mappings.reactive; |
||||
|
||||
import org.springframework.boot.actuate.web.mappings.HandlerMethodDescription; |
||||
import org.springframework.web.reactive.DispatcherHandler; |
||||
|
||||
/** |
||||
* Details of a {@link DispatcherHandler} mapping. |
||||
* |
||||
* @author Andy Wilkinson |
||||
* @since 2.0.0 |
||||
*/ |
||||
public class DispatcherHandlerMappingDetails { |
||||
|
||||
private HandlerMethodDescription handlerMethod; |
||||
|
||||
private HandlerFunctionDescription handlerFunction; |
||||
|
||||
private RequestMappingConditionsDescription requestMappingConditions; |
||||
|
||||
public HandlerMethodDescription getHandlerMethod() { |
||||
return this.handlerMethod; |
||||
} |
||||
|
||||
void setHandlerMethod(HandlerMethodDescription handlerMethod) { |
||||
this.handlerMethod = handlerMethod; |
||||
} |
||||
|
||||
public HandlerFunctionDescription getHandlerFunction() { |
||||
return this.handlerFunction; |
||||
} |
||||
|
||||
void setHandlerFunction(HandlerFunctionDescription handlerFunction) { |
||||
this.handlerFunction = handlerFunction; |
||||
} |
||||
|
||||
public RequestMappingConditionsDescription getRequestMappingConditions() { |
||||
return this.requestMappingConditions; |
||||
} |
||||
|
||||
void setRequestMappingConditions( |
||||
RequestMappingConditionsDescription requestMappingConditions) { |
||||
this.requestMappingConditions = requestMappingConditions; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,39 @@
@@ -0,0 +1,39 @@
|
||||
/* |
||||
* Copyright 2012-2018 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.springframework.boot.actuate.web.mappings.reactive; |
||||
|
||||
import org.springframework.web.reactive.function.server.HandlerFunction; |
||||
|
||||
/** |
||||
* Description of a {@link HandlerFunction}. |
||||
* |
||||
* @author Andy Wilkinson |
||||
* @since 2.0.0 |
||||
*/ |
||||
public class HandlerFunctionDescription { |
||||
|
||||
private final String className; |
||||
|
||||
HandlerFunctionDescription(HandlerFunction<?> handlerFunction) { |
||||
this.className = handlerFunction.getClass().getCanonicalName(); |
||||
} |
||||
|
||||
public String getClassName() { |
||||
return this.className; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,40 @@
@@ -0,0 +1,40 @@
|
||||
/* |
||||
* Copyright 2012-2018 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.springframework.boot.actuate.web.mappings.servlet; |
||||
|
||||
import org.springframework.boot.actuate.web.mappings.HandlerMethodDescription; |
||||
import org.springframework.web.servlet.DispatcherServlet; |
||||
|
||||
/** |
||||
* Details of a {@link DispatcherServlet} mapping. |
||||
* |
||||
* @author Andy Wilkinson |
||||
* @since 2.0.0 |
||||
*/ |
||||
public class DispatcherServletMappingDetails { |
||||
|
||||
private final HandlerMethodDescription handlerMethod; |
||||
|
||||
DispatcherServletMappingDetails(HandlerMethodDescription handlerMethod) { |
||||
this.handlerMethod = handlerMethod; |
||||
} |
||||
|
||||
public HandlerMethodDescription getHandlerMethod() { |
||||
return this.handlerMethod; |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue