use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class ServicesViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/oneBtnPageTitle.xml"));
ptModel.setValue("button1", getBackButtonLabel());
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class AuthConfigViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/threeBtnsPageTitle.xml"));
ptModel.setValue("button1", "button.save");
ptModel.setValue("button2", "button.reset");
ptModel.setValue("button3", getBackButtonLabel("config.auth.label"));
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class AbstractEventHandlerSelectViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/twoBtnsPageTitle.xml"));
ptModel.setValue("button1", "button.next");
ptModel.setValue("button2", "button.cancel");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class EntityResourceOfferingViewBeanBase method createPageTitleModel.
protected void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/twoBtnsPageTitle.xml"));
ptModel.setPageTitleText(getPageTitleText());
ptModel.setValue("button1", getButtonlLabel());
ptModel.setValue("button2", "button.cancel");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class EntityServicesViewBean method createPageTitleModel.
protected void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/oneBtnPageTitle.xml"));
ptModel.setValue("button1", getBackButtonLabel("tab.sub.subjects.label"));
setPageSessionAttribute(getTrackingTabIDName(), Integer.toString(TAB_SERVICES));
}
Aggregations