Created
August 23, 2012 16:04
-
-
Save donatasnicequestion/3438060 to your computer and use it in GitHub Desktop.
UtilityTaskFlowReference Bean for the blog post Designing Modular Applications By Using Dynamic Task Flow Calls in Oracle ADF at http://donatas.nicequestion.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.nicequestion.donatas; | |
import javax.faces.bean.ManagedBean; | |
import javax.faces.bean.NoneScoped; | |
@ManagedBean(name = "utilityFlowReference") | |
@NoneScoped | |
public class UtilityTaskFlowReference { | |
public static final String FLOW_ID | |
= "/WEB-INF/utility-task-flow-definition.xml#utility-task-flow-definition"; | |
public String getFlowId() { | |
return FLOW_ID; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment