All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.base.devserver.themeeditor.messages.HistoryRequest Maven / Gradle / Ivy

There is a newer version: 24.6.0
Show newest version
package com.vaadin.base.devserver.themeeditor.messages;

public class HistoryRequest extends BaseRequest {

    private String undo;

    private String redo;

    public HistoryRequest() {
    }

    public String getUndo() {
        return undo;
    }

    public void setUndo(String undo) {
        this.undo = undo;
    }

    public String getRedo() {
        return redo;
    }

    public void setRedo(String redo) {
        this.redo = redo;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy