/****************************************************************************** * Copyright (c) 2010-2013, Linagora * * 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: * Linagora - initial API and implementation *******************************************************************************/ package com.ebmwebsourcing.petals.services.jsr181; /** * Constants used to generate JSR-181 artifacts. * @author Vincent Zurczak - EBM WebSourcing */ public class Jsr181Constants { public static final String PACKAGE_NAME = "package-name"; public static final String INTERFACE_NAME = "interface-name"; public static final String CLASS_NAME = "class-name"; public static final String PROJECT_NAME = "project-name"; public static final String PROJECT_LOCATION = "project-location"; public static final String SERVICE_NAME = "service-name"; public static final String PORT_NAME = "port-name"; public static final String TNS = "target-namespace"; }