com.kerbaya.session.internal.Request Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of session-maven-api Show documentation
Show all versions of session-maven-api Show documentation
API for communication between session-maven and session-maven-plugin
/*
* Copyright 2023 Kerbaya Software
*
* This file is part of session-maven-plugin.
*
* session-maven-plugin is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* session-maven-plugin is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with session-maven-plugin. If not, see .
*/
package com.kerbaya.session.internal;
import java.io.Serializable;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public final class Request implements Serializable
{
private static final long serialVersionUID = 1L;
private long requestId;
private Command> command;
}