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

com.testvagrant.optimuscloud.entities.MandatoryCaps Maven / Gradle / Ivy

Go to download

The Java Client provides access to Optimus cloud for all java based projects.

There is a newer version: 1.1.0
Show newest version
package com.testvagrant.optimuscloud.entities;

import lombok.Getter;
import lombok.Setter;

@Getter @Setter
public class MandatoryCaps {
    private String platformName;
    private String deviceName;
    private String deviceType;
    private String platformVersion;
    private String udid;
    private String buildNo;

    @Override
    public String toString() {
        return "{" +
                "platformName='" + platformName + '\'' +
                ", deviceName='" + deviceName + '\'' +
                ", deviceType='" + deviceType + '\'' +
                ", platformVersion='" + platformVersion + '\'' +
                ", udid='" + udid + '\'' +
                ", buildNo='" + buildNo + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy