1700086862b9065ce283be61a91c713a87d9ac7aJake Feasel/**
90929d4c6b284dd318f4a78c2aa407afb7423747oliver.bradley * The contents of this file are subject to the terms of the Common Development and
90929d4c6b284dd318f4a78c2aa407afb7423747oliver.bradley * Distribution License (the License). You may not use this file except in compliance with the
90929d4c6b284dd318f4a78c2aa407afb7423747oliver.bradley * License.
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne *
90929d4c6b284dd318f4a78c2aa407afb7423747oliver.bradley * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
90929d4c6b284dd318f4a78c2aa407afb7423747oliver.bradley * specific language governing permission and limitations under the License.
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne *
90929d4c6b284dd318f4a78c2aa407afb7423747oliver.bradley * When distributing Covered Software, include this CDDL Header Notice in each file and include
90929d4c6b284dd318f4a78c2aa407afb7423747oliver.bradley * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
90929d4c6b284dd318f4a78c2aa407afb7423747oliver.bradley * Header, with the fields enclosed by brackets [] replaced by your own identifying
90929d4c6b284dd318f4a78c2aa407afb7423747oliver.bradley * information: "Portions copyright [year] [name of copyright owner]".
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne *
90929d4c6b284dd318f4a78c2aa407afb7423747oliver.bradley * Copyright 2014-2015 ForgeRock AS.
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne */
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne/*global define*/
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Brownedefine("config/main", [
2485a94d32ca071803ba97f2949bff2104d576d7Jake Feasel "./process/CommonIDMConfig",
5c7dfa3f44014cd17026c446373383ec32deb7e9Jason Browne "./process/AdminIDMConfig",
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne "./process/CommonConfig",
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne "./routes/AdminRoutesConfig",
2485a94d32ca071803ba97f2949bff2104d576d7Jake Feasel "./routes/CommonIDMRoutesConfig",
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne "./routes/CommonRoutesConfig",
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne "./validators/CommonValidators",
0269cc41d4e4d04680123fad5853dcdd8109c639Jason Browne "./validators/AdminValidators",
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne "./AppConfiguration",
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne
8b20bc4768b55498f2b2b74d6d12e7e8c62bdbdaJason Browne "./messages/CommonMessages",
1700086862b9065ce283be61a91c713a87d9ac7aJake Feasel "./messages/CommonIDMMessages",
2485a94d32ca071803ba97f2949bff2104d576d7Jake Feasel "./messages/AdminMessages",
2485a94d32ca071803ba97f2949bff2104d576d7Jake Feasel "./errorhandlers/CommonErrorHandlers"
2485a94d32ca071803ba97f2949bff2104d576d7Jake Feasel
48ddd46e9e22ee57a7fb400c6296f977c11173b3Elizabeth Browne]);