main.js revision 4d29788e93e7200491d42963fde5412088abff3d
160N/A/**
160N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
160N/A *
160N/A * Copyright (c) 2011-2012 ForgeRock AS. All rights reserved.
160N/A *
160N/A * The contents of this file are subject to the terms
160N/A * of the Common Development and Distribution License
160N/A * (the License). You may not use this file except in
160N/A * compliance with the License.
160N/A *
160N/A * You can obtain a copy of the License at
160N/A * http://forgerock.org/license/CDDLv1.0.html
160N/A * See the License for the specific language governing
160N/A * permission and limitations under the License.
160N/A *
160N/A * When distributing Covered Code, include this CDDL
160N/A * Header Notice in each file and include the License file
160N/A * at http://forgerock.org/license/CDDLv1.0.html
160N/A * If applicable, add the following below the CDDL Header,
160N/A * with the fields enclosed by brackets [] replaced by
160N/A * your own identifying information:
160N/A * "Portions Copyrighted [year] [name of copyright owner]"
160N/A */
160N/A
160N/A
160N/Adefine("config/main", [
160N/A "./errorhandlers/CommonErrorHandlers",
160N/A "./validators/CommonValidators",
160N/A
160N/A "./routes/CommonRoutesConfig", // In FR-Commons
160N/A "./routes/AMRoutesConfig",
160N/A "./routes/UserRoutesConfig", // In FR-Commons
160N/A "./routes/admin/RealmsRoutes",
160N/A "./routes/user/UMARoutes",
160N/A
160N/A "./messages/CommonMessages",
160N/A "./messages/UserMessages",
160N/A "./AppMessages",
160N/A "./AppConfiguration",
160N/A "./process/CommonConfig",
"./process/AMConfig"
]);