use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class ServicesSelectViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/threeBtnsPageTitle.xml"));
ptModel.setValue("button1", "button.back");
ptModel.setValue("button2", "button.next");
ptModel.setValue("button3", "button.cancel");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class ServicesEditViewBean method createPageTitleModel.
protected 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", "button.back");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class SCSOAPBindingRequestHandlerListEditViewBean method createPageTitleModel.
protected void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/threeBtnsPageTitle.xml"));
ptModel.setPageTitleText("soapBinding.service.requestHandlerList.edit.page.title");
ptModel.setValue("button1", "button.save");
ptModel.setValue("button2", "button.reset");
ptModel.setValue("button3", getBackButtonLabel("breadcrumbs.webservices.soapbinding"));
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class SCPropertiesBase 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("page.title.config"));
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class ValidateSAML2SetupViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/twoBtnsPageTitle.xml"));
ptModel.setValue("button1", "button.validate");
ptModel.setValue("button2", "button.cancel");
}
Aggregations