1. /*
  2. * @(#)StateEngineFactory.java 1.8 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.spi.orbutil.fsm;
  8. import com.sun.corba.se.impl.orbutil.fsm.StateEngineImpl ;
  9. /**
  10. * Factory for creating the standard state machine implementation.
  11. *
  12. * @version @(#)StateEngineFactory.java 1.8 03/12/19
  13. * @author Ken Cavanaugh
  14. */
  15. public class StateEngineFactory {
  16. private StateEngineFactory() {}
  17. public static StateEngine create()
  18. {
  19. return new StateEngineImpl() ;
  20. }
  21. }