Skip to content

Instantly share code, notes, and snippets.

@reevik
Created February 14, 2022 10:04
Show Gist options
  • Save reevik/fa5953a4eca502e850f54917641d81b1 to your computer and use it in GitHub Desktop.
Save reevik/fa5953a4eca502e850f54917641d81b1 to your computer and use it in GitHub Desktop.
@Service
@Path("/")
public class MatrixResource {
@GET
@Path("/status/ping")
@Produces("text/plain")
public String ping(@MatrixParam("name") String name) {
return String.format("matrix variable name=%s", name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment