io.cloudslang.lang.entities.NavigationOptions Maven / Gradle / Ivy
/*******************************************************************************
* (c) Copyright 2016 Hewlett-Packard Development Company, L.P.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License v2.0 which accompany this distribution.
*
* The Apache License is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
*******************************************************************************/
package io.cloudslang.lang.entities;
import java.io.Serializable;
import java.util.Map;
/**
* @author skrivorutchenko
* @version $Id$
* @since 02/10/2019
*/
public class NavigationOptions implements Serializable {
private static final long serialVersionUID = 1415809157458595126L;
private String name;
private long currStepId;
private Map options;
public NavigationOptions(String name, long currStepId, Map options) {
this.name = name;
this.currStepId = currStepId;
this.options = options;
}
/**
* only here to satisfy serialization libraries
*/
private NavigationOptions() {
}
public String getName() {
return this.name;
}
public long getCurrStepId() {
return this.currStepId;
}
public Map getOptions() {
return this.options;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy