GuardBase.java revision 608:7e06bf1dcb09
11638Srgrimes/*
21638Srgrimes * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
31638Srgrimes * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
41638Srgrimes *
51638Srgrimes * This code is free software; you can redistribute it and/or modify it
61638Srgrimes * under the terms of the GNU General Public License version 2 only, as
71638Srgrimes * published by the Free Software Foundation.  Oracle designates this
81638Srgrimes * particular file as subject to the "Classpath" exception as provided
91638Srgrimes * by Oracle in the LICENSE file that accompanied this code.
101638Srgrimes *
111638Srgrimes * This code is distributed in the hope that it will be useful, but WITHOUT
121638Srgrimes * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
131638Srgrimes * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
141638Srgrimes * version 2 for more details (a copy is included in the LICENSE file that
151638Srgrimes * accompanied this code).
161638Srgrimes *
171638Srgrimes * You should have received a copy of the GNU General Public License version
181638Srgrimes * 2 along with this work; if not, write to the Free Software Foundation,
191638Srgrimes * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
201638Srgrimes *
211638Srgrimes * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
221638Srgrimes * or visit www.oracle.com if you need additional information or have any
231638Srgrimes * questions.
241638Srgrimes */
251638Srgrimes
261638Srgrimespackage com.sun.corba.se.spi.orbutil.fsm ;
271638Srgrimes
281638Srgrimesimport com.sun.corba.se.impl.orbutil.fsm.NameBase ;
291638Srgrimes
301638Srgrimespublic abstract class GuardBase extends NameBase implements Guard {
311638Srgrimes    public GuardBase( String name ) { super( name ) ; }
321638Srgrimes}
331638Srgrimes