本文整理汇总了Java中org.kuali.rice.kew.api.user.UserId类的典型用法代码示例。如果您正苦于以下问题:Java UserId类的具体用法?Java UserId怎么用?Java UserId使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
UserId类属于org.kuali.rice.kew.api.user包,在下文中一共展示了UserId类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getPrincipal
import org.kuali.rice.kew.api.user.UserId; //导入依赖的package包/类
public Principal getPrincipal(UserId userId) {
if (userId == null) {
return null;
} else if (userId instanceof PrincipalId) {
String principalId = ((PrincipalId)userId).getPrincipalId();
return KimApiServiceLocator.getIdentityService().getPrincipal(principalId);
} else if (userId instanceof PrincipalName) {
String principalName = ((PrincipalName)userId).getId();
return KimApiServiceLocator.getIdentityService().getPrincipalByPrincipalName(principalName);
} else if (userId instanceof EmployeeId) {
String employeeId = ((EmployeeId)userId).getEmployeeId();
Person person = getPersonByEmployeeId(employeeId);
return getPrincipal(person.getPrincipalId());
}
throw new RiceIllegalArgumentException("Invalid UserIdDTO type was passed: " + userId);
}
示例2: addDelegationRoleRequest
import org.kuali.rice.kew.api.user.UserId; //导入依赖的package包/类
public ActionRequestValue addDelegationRoleRequest(ActionRequestValue parentRequest, String approvePolicy, RoleRecipient role, String responsibilityId, Boolean forceAction, DelegationType delegationType, String description, String ruleId) {
Recipient parentRecipient = parentRequest.getRecipient();
if (parentRecipient instanceof RoleRecipient) {
throw new WorkflowRuntimeException("Cannot delegate on Role Request. It must be a request to a person or workgroup, although that request may be in a role");
}
if (! relatedToRoot(parentRequest)) {
throw new WorkflowRuntimeException("The parent request is not related to any request managed by this factory");
}
ActionRequestValue delegationRoleRequest = createActionRequest(parentRequest.getActionRequested(), parentRequest.getPriority(), role, description, responsibilityId, forceAction, approvePolicy, ruleId, null);
delegationRoleRequest.setDelegationType(delegationType);
int count = 0;
for (Iterator<Id> iter = role.getResolvedQualifiedRole().getRecipients().iterator(); iter.hasNext(); count++) {
//repeat of createRoleRequest code
Id recipientId = iter.next();
if (recipientId.isEmpty()) {
throw new WorkflowRuntimeException("Failed to resolve id of type " + recipientId.getClass().getName() + " returned from role '" + role.getRoleName() + "'. Id returned contained a null or empty value.");
}
if (recipientId instanceof UserId) {
role.setTarget(new KimPrincipalRecipient(getIdentityHelperService().getPrincipal((UserId) recipientId)));
} else if (recipientId instanceof GroupId) {
role.setTarget(new KimGroupRecipient(getIdentityHelperService().getGroup((GroupId) recipientId)));
} else {
throw new WorkflowRuntimeException("Could not process the given type of id: " + recipientId.getClass());
}
ActionRequestValue request = createActionRequest(parentRequest.getActionRequested(), parentRequest.getPriority(), role, description, responsibilityId, forceAction, null, ruleId, null);
request.setDelegationType(delegationType);
//end repeat
request.setParentActionRequest(delegationRoleRequest);
delegationRoleRequest.getChildrenRequests().add(request);
}
//put this mini graph in the larger graph
if (count > 0) {
parentRequest.getChildrenRequests().add(delegationRoleRequest);
delegationRoleRequest.setParentActionRequest(parentRequest);
}
return delegationRoleRequest;
}
示例3: addRoleRequest
import org.kuali.rice.kew.api.user.UserId; //导入依赖的package包/类
/**
* Creates a root Role Request
* @param role
* @param actionRequested
* @param approvePolicy
* @param priority
* @param responsibilityId
* @param forceAction
* @param description
* @param ruleId
* @return the created root role request
*/
public ActionRequestValue addRoleRequest(RoleRecipient role, String actionRequested, String approvePolicy, Integer priority, String responsibilityId, Boolean forceAction, String description, String ruleId) {
ActionRequestValue requestGraph = createActionRequest(actionRequested, priority, role, description, responsibilityId, forceAction, approvePolicy, ruleId, null);
if (role != null && role.getResolvedQualifiedRole() != null && role.getResolvedQualifiedRole().getRecipients() != null) {
int legitimateTargets = 0;
for (Iterator<Id> iter = role.getResolvedQualifiedRole().getRecipients().iterator(); iter.hasNext();) {
Id recipientId = (Id) iter.next();
if (recipientId.isEmpty())
{
throw new WorkflowRuntimeException("Failed to resolve id of type " + recipientId.getClass().getName() + " returned from role '" + role.getRoleName() + "'. Id returned contained a null or empty value.");
}
if (recipientId instanceof UserId)
{
Principal principal = getIdentityHelperService().getPrincipal((UserId) recipientId);
if(KRADUtils.isNotNull(principal)) {
role.setTarget(new KimPrincipalRecipient(principal));
}
} else if (recipientId instanceof GroupId)
{
role.setTarget(new KimGroupRecipient(getIdentityHelperService().getGroup((GroupId) recipientId)));
} else
{
throw new WorkflowRuntimeException("Could not process the given type of id: " + recipientId.getClass());
}
if (role.getTarget() != null)
{
legitimateTargets++;
ActionRequestValue request = createActionRequest(actionRequested, priority, role, description, responsibilityId, forceAction, null, ruleId, null);
request.setParentActionRequest(requestGraph);
requestGraph.getChildrenRequests().add(request);
}
}
if (legitimateTargets == 0) {
LOG.warn("Role did not yield any legitimate recipients");
}
} else {
LOG.warn("Didn't create action requests for action request description '" + description + "' because of null role or null part of role object graph.");
}
requestGraphs.add(requestGraph);
return requestGraph;
}
示例4: addRoleRequest
import org.kuali.rice.kew.api.user.UserId; //导入依赖的package包/类
/**
* Creates a root Role Request
* @param role
* @param actionRequested
* @param approvePolicy
* @param priority
* @param responsibilityId
* @param forceAction
* @param description
* @param ruleId
* @return the created root role request
*/
public ActionRequestValue addRoleRequest(RoleRecipient role, String actionRequested, String approvePolicy, Integer priority, String responsibilityId, Boolean forceAction, String description, String ruleId) {
ActionRequestValue requestGraph = createActionRequest(actionRequested, priority, role, description, responsibilityId, forceAction, approvePolicy, ruleId, null);
if (role != null && role.getResolvedQualifiedRole() != null && role.getResolvedQualifiedRole().getRecipients() != null) {
int legitimateTargets = 0;
for (Iterator<Id> iter = role.getResolvedQualifiedRole().getRecipients().iterator(); iter.hasNext();) {
Id recipientId = (Id) iter.next();
if (recipientId.isEmpty())
{
throw new WorkflowRuntimeException("Failed to resolve id of type " + recipientId.getClass().getName() + " returned from role '" + role.getRoleName() + "'. Id returned contained a null or empty value.");
}
if (recipientId instanceof UserId)
{
Principal principal = getIdentityHelperService().getPrincipal((UserId) recipientId);
if(ObjectUtils.isNotNull(principal)) {
role.setTarget(new KimPrincipalRecipient(principal));
}
} else if (recipientId instanceof GroupId)
{
role.setTarget(new KimGroupRecipient(getIdentityHelperService().getGroup((GroupId) recipientId)));
} else
{
throw new WorkflowRuntimeException("Could not process the given type of id: " + recipientId.getClass());
}
if (role.getTarget() != null)
{
legitimateTargets++;
ActionRequestValue request = createActionRequest(actionRequested, priority, role, description, responsibilityId, forceAction, null, ruleId, null);
request.setParentActionRequest(requestGraph);
requestGraph.getChildrenRequests().add(request);
}
}
if (legitimateTargets == 0) {
LOG.warn("Role did not yield any legitimate recipients");
}
} else {
LOG.warn("Didn't create action requests for action request description '" + description + "' because of null role or null part of role object graph.");
}
requestGraphs.add(requestGraph);
return requestGraph;
}
示例5: getPrincipal
import org.kuali.rice.kew.api.user.UserId; //导入依赖的package包/类
/**
* Returns the principal for the given UserId.
*
* @throws RiceIllegalArgumentException if the given UserId does not resolve to a valid principal
*/
public Principal getPrincipal(UserId userId);