Files
ax_hub_mcp_tool/TestReflection.java
jade 459895ed40
Some checks failed
Deploy to OCIWP / deploy (push) Has been cancelled
업데이트
2026-09-04 17:44:21 +09:00

12 lines
422 B
Java

import java.lang.reflect.Method;
import io.modelcontextprotocol.server.transport.HttpServletStreamableServerTransportProvider;
public class TestReflection {
public static void main(String[] args) throws Exception {
Class<?> clazz = HttpServletStreamableServerTransportProvider.Builder.class;
for (Method m : clazz.getDeclaredMethods()) {
System.out.println(m.getName());
}
}
}