blob: e2e6e23869372e6ea21f810479db91ea34e512ae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.ote.connect.server.internal;
import org.eclipse.ote.statemachine.BaseInput;
import org.eclipse.ote.statemachine.StateMachine;
public class InputAllowMoreSessions extends BaseInput {
public static final Object TYPE = new Object();
public InputAllowMoreSessions(StateMachine stateMachine) {
super(stateMachine);
}
@Override
public Object getType() {
return TYPE;
}
}