@Path protected by Java annotation @Authenticated Show my access token
@Path protected by Java annotation @RolesAllowed("finance-user") /showinvoices
@Path protected by Java annotation @RolesAllowed("finance-admin") /addinvoices
@Path protected in external API(authenticated user) External API: http://localhost:3000/campaign/list
{#for invoice in invoices} {/for}
Invoice ID ItemCustomerDateAmount (€)
{invoice.id} {invoice.item} {invoice.name} {invoice.date} {invoice.amount}
Back