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

com.applitools.eyes.SessionUrls Maven / Gradle / Ivy

There is a newer version: 5.76.0
Show newest version
package com.applitools.eyes;

/**
 * Container for URLs received by test results.
 */
public class SessionUrls {
    private String batch;
    private String session;

    public String getBatch() {
        return batch;
    }

    public void setBatch(String batch) {
        this.batch = batch;
    }

    public String getSession() {
        return session;
    }

    public void setSession(String session) {
        this.session = session;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy