001/*
002 * (C) Copyright 2002 - 2006 Nuxeo SARL <http://nuxeo.com> and others
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 *
008 * http://www.eclipse.org/legal/epl-v10.html
009 * Contributors:
010 *     Nuxeo - initial API and implementation
011 *
012 *
013 * $Id: JNDILocations.java 17822 2007-04-26 04:46:23Z janguenot $
014 */
015
016package org.nuxeo.ecm.platform.audit.ws.delegate;
017
018/**
019 * Holds JNDI locations of the EJBs.
020 *
021 * @author <a href="mailto:ja@nuxeo.com">Julien Anguenot</a>
022 */
023public class JNDILocations {
024
025    public static final String nxauditWsAuditLocalLocation = "nuxeo/WSAuditBean/local";
026
027    public static final String nxauditWsAuditRemoteLocation = "nuxeo/WSAuditBean/remote";
028
029    private JNDILocations() {
030    }
031
032}