Hello, I have a design problem in hivemind1.1. I currently have defined into my hivemodule.xml the following code:
<schema id="roles"> <element name="role"> <attribute name="id" required="true"/> <conversion class="org.jfly.security.JFlyRole" /> </element> </schema> <configuration-point id="AccessAll" schema-id="roles"/> <contribution configuration-id="AccessAll"> <role id="administrator"/> <role id="user"/> <role id="guest"/> <role id="broker"/> </contribution> I'd like to contribute roles as strings more or less the same way I'm doing now (<role id="guest"/>), but I don't know how to write the element . Could you please tell me how to do? Thx in advance, Kiuma