use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class ConfigureGoogleAppsCompleteViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/oneBtnPageTitle.xml"));
ptModel.setValue("button1", "button.finish");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class SessionHAStatisticsViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/oneBtnPageTitle.xml"));
ptModel.setValue("button1", "button.refresh");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class ConfigureOAuth2ViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/twoBtnsPageTitle.xml"));
ptModel.setValue("button1", "button.create");
ptModel.setValue("button2", "button.cancel");
}
use of com.sun.web.ui.model.CCPageTitleModel in project OpenAM by OpenRock.
the class STSEditViewBeanBase 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 STSHomeViewBean method createPageTitleModel.
private void createPageTitleModel() {
ptModel = new CCPageTitleModel(getClass().getClassLoader().getResourceAsStream("com/sun/identity/console/oneBtnPageTitle.xml"));
ptModel.setValue("button1", getBackButtonLabel());
}
Aggregations