391392393394395396397398399
final File startServ = layout.getStartServ(); generateFromTemplate(tokens, startServTemplate, startServ); } catch (Exception e) { throw new DomainException( strMgr.getString("startServNotCreated"), e); } }
411412413414415416417418419
//generateFromTemplate(new TokenValueSet(), //layout.getKillServTemplate(), layout.getKillServ()); } catch (Exception e) { throw new DomainException( strMgr.getString("stopServNotCreated"), e); } }
430431432433434435436437
TokenValueSet tokens = PEAccXmlTokens.getTokenValueSet(domainConfig); generateFromTemplate(tokens, accXmlTemplate, accXml); } catch(Exception e) { throw new DomainException(strMgr.getString("accXmlNotCreated"), e); } }
448449450451452453454455456
generateFromTemplate(tokens, src, dest); handleLocalizedIndexHtmls(layout, tokens); } catch (IOException ioe) { throw new DomainException( strMgr.getString("indexFileNotCreated"), ioe); } }
465466467468469470471472473
{ generateFromTemplate(new TokenValueSet(), src, dest); } catch (IOException ioe) { throw new DomainException( strMgr.getString("loggingPropertiesNotCreated"), ioe); } }
505506507508509510511512513
{ FileUtils.copy(src, dest); } catch (IOException ioe) { throw new DomainException( strMgr.getString("defaultWebXmlNotCreated"), ioe); } }
522523524525526527528529530
{ FileUtils.copy(src, dest); } catch (IOException ioe) { throw new DomainException( strMgr.getString("loginConfNotCreated"), ioe); } }
539540541542543544545546547548
{ FileUtils.copy(src, dest); } catch (IOException ioe) { throw new DomainException( strMgr.getString("wssserverconfignotcreated"), ioe); } }
557558559560561562563564565566
634635636637638639640641642
//Change the password in the masterpassword file or delete the file if it is //not to be saved. changeMasterPasswordInMasterPasswordFile(config, newPass, saveMasterPassword(config)); } catch (Exception ex) { throw new DomainException( strMgr.getString("masterPasswordNotChanged"), ex); } }