use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class SubjectEditViewBean 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", getBackButtonLabel());
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class ServicesNoAttributeViewBean method createPageTitleModel.
protected void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/oneBtnPageTitle.xml"));
ptModel.setValue("button1", "button.back");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class ServicesCannotAssignServiceViewBean method createPageTitleModel.
protected void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/oneBtnPageTitle.xml"));
ptModel.setValue("button1", "button.cancel");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class RealmResourceOfferingEditViewBean method createPageTitleModel.
protected void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/threeBtnsPageTitle.xml"));
ptModel.setPageTitleText(getPageTitleText());
ptModel.setValue("button1", "button.save");
ptModel.setValue("button2", "button.reset");
ptModel.setValue("button3", getBackButtonLabel("breadcrumbs.webservices.discovery"));
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class MAPCreateDeviceViewBean 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");
}
Aggregations