EndpointData.java revision 524:dcaa586ab756
1170613Sbms/*
2189592Sbms * Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
3170613Sbms * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4170613Sbms *
5170613Sbms * This code is free software; you can redistribute it and/or modify it
6170613Sbms * under the terms of the GNU General Public License version 2 only, as
7170613Sbms * published by the Free Software Foundation.  Oracle designates this
8170613Sbms * particular file as subject to the "Classpath" exception as provided
9170613Sbms * by Oracle in the LICENSE file that accompanied this code.
10170613Sbms *
11170613Sbms * This code is distributed in the hope that it will be useful, but WITHOUT
12170613Sbms * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13170613Sbms * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14170613Sbms * version 2 for more details (a copy is included in the LICENSE file that
15170613Sbms * accompanied this code).
16170613Sbms *
17170613Sbms * You should have received a copy of the GNU General Public License version
18170613Sbms * 2 along with this work; if not, write to the Free Software Foundation,
19170613Sbms * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20170613Sbms *
21170613Sbms * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22170613Sbms * or visit www.oracle.com if you need additional information or have any
23170613Sbms * questions.
24170613Sbms */
25170613Sbms
26170613Sbmspackage com.sun.xml.internal.ws.api.server;
27170613Sbms
28170613Sbmsimport javax.xml.namespace.QName;
29170613Sbms
30170613Sbms/**
31170613Sbms * @author Jitendra Kotamraju
32170613Sbms */
33170613Sbmspublic abstract class EndpointData {
34170613Sbms
35170613Sbms    public abstract String getNamespace();
36170613Sbms
37170613Sbms    public abstract String getServiceName();
38170613Sbms
39170613Sbms    public abstract String getPortName();
40170613Sbms
41170613Sbms    public abstract String getImplClass();
42170613Sbms
43171746Scsjp}
44170613Sbms