I have a MobileFirst adapter with multiple GET and POST-methods/endpoints, they are located in the AdapternameResource.java file and they follow the standard of:
@GET
@PATH("/name")
@Produces("application/json")
public Response method()
{
}
They are all visible when i view the adapter in MobileFirst Console.
Now i added a new get method that just returns a hello world-object, however this method is not visible in the MobileFirst Console and i cannot call it.
I added the method to the resource file, do i need to do something more??