StateEngineFactory.java revision 608:7e06bf1dcb09
1139749Simp/*
267314Sjon * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
367314Sjon * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
467314Sjon *
567314Sjon * This code is free software; you can redistribute it and/or modify it
667314Sjon * under the terms of the GNU General Public License version 2 only, as
767314Sjon * published by the Free Software Foundation.  Oracle designates this
867314Sjon * particular file as subject to the "Classpath" exception as provided
967314Sjon * by Oracle in the LICENSE file that accompanied this code.
1067314Sjon *
1167314Sjon * This code is distributed in the hope that it will be useful, but WITHOUT
1267314Sjon * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1367314Sjon * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1467314Sjon * version 2 for more details (a copy is included in the LICENSE file that
1567314Sjon * accompanied this code).
1667314Sjon *
1767314Sjon * You should have received a copy of the GNU General Public License version
1867314Sjon * 2 along with this work; if not, write to the Free Software Foundation,
1967314Sjon * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2067314Sjon *
2167314Sjon * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2267314Sjon * or visit www.oracle.com if you need additional information or have any
2367314Sjon * questions.
2467314Sjon */
2567314Sjon
2667314Sjonpackage com.sun.corba.se.spi.orbutil.fsm;
2767314Sjon
2867314Sjonimport com.sun.corba.se.impl.orbutil.fsm.StateEngineImpl ;
29119418Sobrien
30119418Sobrien/**
31119418Sobrien * Factory for creating the standard state machine implementation.
3267314Sjon *
3367314Sjon * @author Ken Cavanaugh
3467314Sjon */
3567314Sjonpublic class StateEngineFactory {
3667314Sjon    private StateEngineFactory() {}
3767314Sjon
3867314Sjon    public static StateEngine create()
3967314Sjon    {
4067314Sjon        return new StateEngineImpl() ;
41201453Simp    }
42150762Simp}
43150762Simp