CorbaAcceptor.java revision 608:7e06bf1dcb09
1127785Sbms/*
2127785Sbms * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
3139823Simp * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4127785Sbms *
5127785Sbms * This code is free software; you can redistribute it and/or modify it
6127785Sbms * under the terms of the GNU General Public License version 2 only, as
7127785Sbms * published by the Free Software Foundation.  Oracle designates this
8127785Sbms * particular file as subject to the "Classpath" exception as provided
9127785Sbms * by Oracle in the LICENSE file that accompanied this code.
10127785Sbms *
11127785Sbms * This code is distributed in the hope that it will be useful, but WITHOUT
12127785Sbms * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13127785Sbms * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14127785Sbms * version 2 for more details (a copy is included in the LICENSE file that
15127785Sbms * accompanied this code).
16127785Sbms *
17127785Sbms * You should have received a copy of the GNU General Public License version
18127785Sbms * 2 along with this work; if not, write to the Free Software Foundation,
19127785Sbms * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20127785Sbms *
21127785Sbms * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22127785Sbms * or visit www.oracle.com if you need additional information or have any
23127785Sbms * questions.
24127785Sbms */
25127785Sbms
26127785Sbmspackage com.sun.corba.se.spi.transport;
27127785Sbms
28127785Sbmsimport com.sun.corba.se.pept.transport.Acceptor;
29127785Sbms
30127785Sbmsimport com.sun.corba.se.spi.ior.IORTemplate;
31127785Sbms
32127785Sbms// REVISIT - impl/poa specific:
33127785Sbmsimport com.sun.corba.se.impl.oa.poa.Policies;
34127785Sbms
35127785Sbms/**
36127785Sbms * @author Harold Carr
37127785Sbms */
38127785Sbmspublic interface CorbaAcceptor
39127785Sbms    extends
40127785Sbms        Acceptor
41127785Sbms{
42127785Sbms    public String getObjectAdapterId();
43127785Sbms    public String getObjectAdapterManagerId();
44127785Sbms    public void addToIORTemplate(IORTemplate iorTemplate, Policies policies,
45127785Sbms                                 String codebase);
46127785Sbms    public String getMonitoringName();
47127785Sbms}
48127785Sbms
49127785Sbms// End of file.
50195699Srwatson