Hi,I have defined both doGet() and doPost() methods for
SlingAllMethodsServlet as below@Overrideprotected void
doGet(SlingHttpServletRequest request,SlingHttpServletResponse response)
throws ServletException {}@Overrideprotected void
doPost(SlingHttpServletRequest request,SlingHttpServletResponse
response) throws ServletException {}Why are both GET and POST requests
in this servlet accessible from Postman even though
sling.servlet.methods has been explicitly declared as GET as shown
below? @comp...