use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class NewAuthInstanceViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/twoBtnsPageTitle.xml"));
ptModel.setValue("button1", "button.ok");
ptModel.setValue("button2", "button.cancel");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class ImportEntityViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/twoBtnsPageTitle.xml"));
ptModel.setValue("button1", "button.ok");
ptModel.setValue("button2", "button.cancel");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class SessionPropertyEditViewBean method createPageTitleModel.
protected void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/threeBtnsPageTitle.xml"));
ptModel.setValue("button1", "button.ok");
ptModel.setValue("button2", "button.reset");
ptModel.setValue("button3", "button.cancel");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class SMDiscoveryDescriptionViewBeanBase method create3ButtonPageTitle.
protected void create3ButtonPageTitle() {
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", setBackButton());
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class SMDiscoveryBootstrapRefOffAddViewBean method createPageTitleModel.
protected void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/twoBtnsPageTitle.xml"));
ptModel.setPageTitleText("discovery.service.bootstrapResOff.create.page.title");
ptModel.setValue("button1", "button.ok");
ptModel.setValue("button2", "button.cancel");
}
Aggregations