I'm using Crowd 2.4.2 but cannot import UserTemplate. I'm able get the crowd.model.user.User interface but cannot get to any of the classes in that package.
I've included crowd-integration-client-common, crowd-integration-client-rest, embedded-crowd-api, crowd-integration-api in my pom. Is there something else I need to bring in?
Thanks! Ryan
com.atlassian.crowd.model.user.User is implemented by com.atlassian.crowd.model.user.UserTemplate, which is in the crowd-api artifact.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For those who encounter this issue in the future, I believe the preferred path is to create a class implementing the com.atlassian.crowd.model.user.User interface and run your changes through a CrowdClient. If you look at the demo app that shipped with 2.4.2, there's a good example of this in:
demo-webapp/com/atlassian/crowd/security/demo/model/DemoUser.java
demo-webapp/com/atlassian/crowd/security/demo/action/user/UpdateUser.java
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.