main.js revision 2485a94d32ca071803ba97f2949bff2104d576d7
0N/A/**
1879N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0N/A *
0N/A * Copyright (c) 2014 ForgeRock AS. All rights reserved.
0N/A *
0N/A * The contents of this file are subject to the terms
0N/A * of the Common Development and Distribution License
0N/A * (the License). You may not use this file except in
0N/A * compliance with the License.
0N/A *
0N/A * You can obtain a copy of the License at
0N/A * http://forgerock.org/license/CDDLv1.0.html
0N/A * See the License for the specific language governing
0N/A * permission and limitations under the License.
0N/A *
0N/A * When distributing Covered Code, include this CDDL
0N/A * Header Notice in each file and include the License file
0N/A * at http://forgerock.org/license/CDDLv1.0.html
1472N/A * If applicable, add the following below the CDDL Header,
1472N/A * with the fields enclosed by brackets [] replaced by
1472N/A * your own identifying information:
0N/A * "Portions Copyrighted [year] [name of copyright owner]"
0N/A */
0N/A
1879N/A/*global define*/
1879N/A
1879N/Adefine("config/main", [
1879N/A "./process/CommonIDMConfig",
1879N/A "./process/CommonConfig",
1879N/A
1879N/A "./routes/AdminRoutesConfig",
1879N/A "./routes/CommonIDMRoutesConfig",
1879N/A "./routes/CommonRoutesConfig",
0N/A
0N/A "./validators/CommonValidators",
0N/A "./validators/AdminValidators",
0N/A
0N/A "./AppConfiguration",
0N/A
0N/A "./messages/CommonMessages",
0N/A "./messages/AdminMessages",
0N/A "./errorhandlers/CommonErrorHandlers"
0N/A
0N/A]);
0N/A