AdminMessages.js revision 620268d6c2c779a8b2c676f276680021144b532f
0N/A/**
0N/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
0N/A * If applicable, add the following below the CDDL Header,
0N/A * with the fields enclosed by brackets [] replaced by
0N/A * your own identifying information:
0N/A * "Portions Copyrighted [year] [name of copyright owner]"
0N/A */
0N/A
0N/A/*global define*/
0N/A
0N/Adefine("config/messages/AdminMessages", [
0N/A], function() {
0N/A
0N/A var obj = {
0N/A "connectorsNotAvailable": {
0N/A msg: "config.messages.ConnectorMessages.connectorsNotAvailable",
0N/A type: "error"
0N/A },
0N/A "connectorSaved": {
0N/A msg: "config.messages.ConnectorMessages.connectorSaved",
0N/A type: "info"
0N/A },
0N/A "connectorSaveFail": {
0N/A msg: "config.messages.ConnectorMessages.connectorSaveFail",
0N/A type: "error"
0N/A },
0N/A "connectorTestPass": {
0N/A msg: "config.messages.ConnectorMessages.connectorTestPass",
0N/A type: "info"
0N/A },
0N/A "connectorTestFailed": {
0N/A msg: "config.messages.ConnectorMessages.connectorTestFailed",
0N/A type: "error"
0N/A },
0N/A "deleteConnectorSuccess": {
0N/A msg: "config.messages.ConnectorMessages.deleteConnectorSuccess",
0N/A type: "info"
0N/A },
0N/A "deleteConnectorFail": {
0N/A msg: "config.messages.ConnectorMessages.deleteConnectorFail",
0N/A type: "error"
0N/A },
0N/A "connectorBadMainVersion": {
0N/A msg: "config.messages.ConnectorMessages.connectorBadMainVersion",
0N/A type: "error"
0N/A },
0N/A "connectorBadMinorVersion": {
0N/A msg: "config.messages.ConnectorMessages.connectorBadMinorVersion",
0N/A type: "error"
0N/A },
0N/A "connectorVersionChange": {
0N/A msg: "config.messages.ConnectorMessages.connectorVersionChange",
0N/A type: "info"
0N/A },
0N/A "deleteManagedSuccess": {
0N/A msg: "config.messages.ManagedObjectMessages.deleteManagedSuccess",
0N/A type: "info"
0N/A },
0N/A "deleteManagedFail": {
0N/A msg: "config.messages.ManagedObjectMessages.deleteManagedFail",
0N/A type: "error"
0N/A },
0N/A "managedObjectSaveSuccess" : {
0N/A msg: "config.messages.ManagedObjectMessages.saveSuccessful",
0N/A type: "info"
0N/A },
0N/A "authSaveSuccess" : {
0N/A msg: "config.messages.AuthenticationMessages.saveSuccessful",
0N/A type: "info"
0N/A },
0N/A "mappingSaveSuccess" : {
0N/A msg: "config.messages.MappingMessages.mappingSaveSuccess",
0N/A type: "info"
0N/A },
0N/A "newMappingAdded" : {
0N/A msg: "config.messages.MappingMessages.newMappingAdded",
0N/A type: "info"
0N/A },
0N/A "mappingDeleted" : {
0N/A msg: "config.messages.MappingMessages.mappingDeleted",
0N/A type: "info"
0N/A }
0N/A };
0N/A
0N/A return obj;
0N/A});
0N/A
0N/A