解決できない小さな問題が 1 つあります。デフォルトでは、propertyingo 値は anyType です。
<n1:Role i:type="d:anyType">
このタイプを a:User に変更するにはどうすればよいですか?
If I understood your question right you can just use setType method:You create your PropertyInfo object and then just set your custom type in your code:
PropertyInfo role = new PropertyInfo();
role.setType(User.class);
Or another way is to assign your custom type (an instance of Class) to the type
field of the PropertyInfo
:
role.type = User.Class;