Extension Development - setting Runtime permissions for your extension's services
Hello!
I've developed a java extension for a resource whose services will be called within my thingworx platform.
Is there a way to hardcode-set the 'Service Execute' RunTime permissions on this extension's services, inside the .java file itself?
The idea is to have the permissions defined in the extension itself, otherwise, the Resources' collective permissions will be automatically assigned to my custom resource.
I've consulted the Extension Development Guide , but I could not find out how to do so.
I imagine, such parameterization is to be set on the tag '@ThingworxServiceDefinition ' in the java code
E.G.: @ThingworxServiceDefinition(name = "GenerateBillingDetailsReport", description = "Generate a pdf file with the Billing Details Report", category = "", isAllowOverride = false, aspects = {
"isAsync:false" })
Thank you!
