blob: 32b7a6b48ae7baad0ee82d8b3a4319e5941fc3fa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.eclipselink.core.internal.context.logging;
/**
* Logger
*/
public enum Logger {
default_logger,
java_logger,
server_logger;
// EclipseLink value string
static final String DEFAULT_LOGGER = "DefaultLogger";
static final String JAVA_LOGGER = "JavaLogger";
static final String SERVER_LOGGER = "ServerLogger";
}