/servers/media/jsr-309/src/main/java/org/mobicents/javax/media/mscontrol/networkconnection/TimeoutError.java

http://mobicents.googlecode.com/ · Java · 42 lines · 14 code · 7 blank · 21 comment · 0 complexity · 0560a16651d74c2fb0784ee188e8eb61 MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright XXXX, Red Hat Middleware LLC, and individual contributors as indicated
  4. * by the @authors tag. All rights reserved.
  5. * See the copyright.txt in the distribution for a full listing
  6. * of individual contributors.
  7. * This copyrighted material is made available to anyone wishing to use,
  8. * modify, copy, or redistribute it subject to the terms and conditions
  9. * of the GNU General Public License, v. 2.0.
  10. * This program is distributed in the hope that it will be useful, but WITHOUT A
  11. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12. * PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. * You should have received a copy of the GNU General Public License,
  14. * v. 2.0 along with this distribution; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16. * MA 02110-1301, USA.
  17. */
  18. package org.mobicents.javax.media.mscontrol.networkconnection;
  19. import javax.media.mscontrol.MediaErr;
  20. import org.mobicents.fsm.State;
  21. import org.mobicents.fsm.TransitionHandler;
  22. /**
  23. *
  24. * @author kulikov
  25. */
  26. public class TimeoutError implements TransitionHandler {
  27. private NetworkConnectionImpl connection;
  28. public TimeoutError(NetworkConnectionImpl connection) {
  29. this.connection = connection;
  30. }
  31. public void process(State state) {
  32. connection.error = MediaErr.TIMEOUT;
  33. connection.errorMsg = "Wait timeout in state " + state.getName();
  34. }
  35. }