本文整理汇总了Java中uk.org.ponder.rsf.flow.jsfnav.NavigationCase类的典型用法代码示例。如果您正苦于以下问题:Java NavigationCase类的具体用法?Java NavigationCase怎么用?Java NavigationCase使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
NavigationCase类属于uk.org.ponder.rsf.flow.jsfnav包,在下文中一共展示了NavigationCase类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
@SuppressWarnings({ "unchecked", "rawtypes" })
public List reportNavigationCases() {
List l = new ArrayList();
l.add(new NavigationCase("importing",
new SimpleViewParameters(AdministrateProducer.VIEW_ID)));
// TODO intercepter to configure display of error message?
l.add(new NavigationCase("no-reference", new SimpleViewParameters(
ImportErrorProducer.VIEW_ID)));
l.add(new NavigationCase("permission-exception", new SimpleViewParameters(
ImportErrorProducer.VIEW_ID)));
l.add(new NavigationCase("idunused-exception", new SimpleViewParameters(
ImportErrorProducer.VIEW_ID)));
l.add(new NavigationCase("type-exception", new SimpleViewParameters(
ImportErrorProducer.VIEW_ID)));
l.add(new NavigationCase("exception", new SimpleViewParameters(
ImportErrorProducer.VIEW_ID)));
return l;
}
示例2: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
@SuppressWarnings({ "unchecked", "rawtypes" })
public List reportNavigationCases() {
List i = new ArrayList();
i.add(new NavigationCase(EvaluationSettingsProducer.VIEW_ID, new SimpleViewParameters(EvaluationSettingsProducer.VIEW_ID)));
i.add(new NavigationCase(PreviewEvalProducer.VIEW_ID, new SimpleViewParameters(PreviewEvalProducer.VIEW_ID)));
return i;
}
示例3: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
/**
* @return
* @see uk.org.ponder.rsf.flow.jsfnav.NavigationCaseReporter#reportNavigationCases()
*/
@SuppressWarnings({ "unchecked", "rawtypes" })
public List reportNavigationCases() {
ArrayList result = new ArrayList();
result.add(new NavigationCase(null, new SimpleViewParameters(SummaryProducer.VIEW_ID)));
return result;
}
示例4: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
/**
* @return
* @see uk.org.ponder.rsf.flow.jsfnav.NavigationCaseReporter#reportNavigationCases()
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
public List reportNavigationCases() {
List i = new ArrayList();
i.add(new NavigationCase("uploadSucces", new SimpleViewParameters(VIEW_ID)));
i.add(new NavigationCase("uploadFailure", new SimpleViewParameters(AdministrateProducer.VIEW_ID)));
i.add(new NavigationCase("overwriteSuccess", new SimpleViewParameters(AdministrateProducer.VIEW_ID)));
return i;
}
示例5: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
@SuppressWarnings({ "unchecked", "rawtypes" })
public List reportNavigationCases() {
List togo = new ArrayList();
// the evaluationId should get filled in by the org.sakaiproject.evaluation.tool.wrapper.EvalActionResultInterceptor.java
togo.add( new NavigationCase("evalSettings", new EvalViewParameters(EvaluationSettingsProducer.VIEW_ID, null)) );
return togo;
}
示例6: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
@SuppressWarnings({ "unchecked", "rawtypes" })
public List reportNavigationCases() {
List i = new ArrayList();
i.add(new NavigationCase(PreviewItemProducer.VIEW_ID, new SimpleViewParameters(
PreviewItemProducer.VIEW_ID)));
return i;
}
示例7: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
public List<NavigationCase> reportNavigationCases() {
List<NavigationCase> togo = new ArrayList<NavigationCase>();
togo.add(new NavigationCase("continue", new SimpleViewParameters(ConfirmProducer.VIEW_ID)));
togo.add(new NavigationCase("backSameRole", new SimpleViewParameters(SameRoleProducer.VIEW_ID)));
togo.add(new NavigationCase("backDifferentRole", new SimpleViewParameters(DifferentRoleProducer.VIEW_ID)));
return togo;
}
示例8: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
public List<NavigationCase> reportNavigationCases()
{
List<NavigationCase> nav= new ArrayList<NavigationCase>();
nav.add(new NavigationCase("submit", new SimpleViewParameters(
FinishedHelperProducer.VIEW_ID)));
nav.add(new NavigationCase("cancel", new SimpleViewParameters(
FinishedHelperProducer.VIEW_ID)));
return nav;
}
示例9: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
/**
* @see uk.org.ponder.rsf.flow.jsfnav.NavigationCaseReporter#reportNavigationCases()
*/
public List<NavigationCase> reportNavigationCases()
{
// All cases [except for errors] return to the compose screen
List<NavigationCase> cases = new ArrayList<NavigationCase>();
cases.add(new NavigationCase(new SimpleViewParameters(ComposeProducer.VIEW_ID)));
cases.add(new NavigationCase(ConfigBean.CONFIG_SAVE_FAILED, new SimpleViewParameters(
OptionsProducer.VIEW_ID)));
return cases;
}
示例10: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
public List<NavigationCase> reportNavigationCases()
{
List<NavigationCase> l = new ArrayList<NavigationCase>();
// default navigation case
l.add(new NavigationCase(null, new SimpleViewParameters(ComposeProducer.VIEW_ID)));
return l;
}
示例11: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
/**
* @see uk.org.ponder.rsf.flow.jsfnav.NavigationCaseReporter#reportNavigationCases()
*/
public List<NavigationCase> reportNavigationCases()
{
List<NavigationCase> cases = new ArrayList<NavigationCase>();
cases.add(new NavigationCase(new SimpleViewParameters(ComposeProducer.VIEW_ID)));
cases.add(new NavigationCase(EmailBean.EMAIL_SENT, new SimpleViewParameters(
ResultsProducer.VIEW_ID)));
return cases;
}
示例12: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
public List reportNavigationCases() {
List<NavigationCase> togo = new ArrayList<NavigationCase>();
togo.add(new NavigationCase("success", new SimpleViewParameters(ShowPageProducer.VIEW_ID)));
togo.add(new NavigationCase("failure", new SimpleViewParameters(QuizPickerProducer.VIEW_ID)));
togo.add(new NavigationCase("cancel", new SimpleViewParameters(ShowPageProducer.VIEW_ID)));
return togo;
}
示例13: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
public List reportNavigationCases() {
List<NavigationCase> togo = new ArrayList<NavigationCase>();
togo.add(new NavigationCase("success", new SimpleViewParameters(ShowPageProducer.VIEW_ID)));
togo.add(new NavigationCase("failure", new SimpleViewParameters(ShowItemProducer.VIEW_ID)));
togo.add(new NavigationCase("cancel", new SimpleViewParameters(ShowPageProducer.VIEW_ID)));
return togo;
}
示例14: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
public List reportNavigationCases() {
List<NavigationCase> togo = new ArrayList<NavigationCase>();
togo.add(new NavigationCase("success", new SimpleViewParameters(ShowPageProducer.VIEW_ID)));
togo.add(new NavigationCase("failure", new SimpleViewParameters(BltiPickerProducer.VIEW_ID)));
togo.add(new NavigationCase("cancel", new SimpleViewParameters(ShowPageProducer.VIEW_ID)));
return togo;
}
示例15: reportNavigationCases
import uk.org.ponder.rsf.flow.jsfnav.NavigationCase; //导入依赖的package包/类
public List reportNavigationCases() {
List<NavigationCase> togo = new ArrayList<NavigationCase>();
togo.add(new NavigationCase(null, new SimpleViewParameters(ShowPageProducer.VIEW_ID)));
togo.add(new NavigationCase("success", new SimpleViewParameters(ShowPageProducer.VIEW_ID)));
togo.add(new NavigationCase("cancel", new SimpleViewParameters(ShowPageProducer.VIEW_ID)));
return togo;
}