There are a couple instances where models have multiple set methods for the
same field.
UserAdminRole has...
public void setOsP( String osP )
public void setOsP( Set<String> osPs )
public void setOsU( Set<String> osUs )
public void setOsU( String osU )
User has...
public void setRole( String roleName )
public void setRole( UserRole role )
public void setAdminRole( UserAdminRole role )
public void setAdminRole( String roleName )
This is causing some issues down the line with jackson. I have a workaround but
wanted to see if there was any possibility of changing one of the method names.
Thanks,
~Chris