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

io.appium.java_client.serverevents.ServerEvents Maven / Gradle / Ivy

The newest version!
package io.appium.java_client.serverevents;

import lombok.Data;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;

@Data
public class ServerEvents {

    public final List commands;
    public final List events;
    public final String jsonData;

    public void save(Path output) throws IOException {
        Files.write(output, this.jsonData.getBytes());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy