Package org.jbpm.userprofile

Examples of org.jbpm.userprofile.UserProfileManager


      Lifecycle.beginCall();
      MockIdentity midentity = new MockIdentity();
      Contexts.getSessionContext().set("org.jboss.seam.security.identity", midentity);


      UserProfileManager upm = new UserProfileManager();
      upm.setUserProfileRepository(new MockFileBasedUserProfileRepository());

      User user = (User)upm.getUser();
      assertEquals(user.getId(), "mockedUser");

      DroolsTaskUserProfile userProfile = (DroolsTaskUserProfile)user.getUserProfile();
      //assertEquals(userProfile.getDisplayName(entity), "mockedUserName");
    }
View Full Code Here

TOP

Related Classes of org.jbpm.userprofile.UserProfileManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.