com.testvagrant.optimus.core.models.CloudConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optimus-lite Show documentation
Show all versions of optimus-lite Show documentation
Optimus Lite API to manage test devices and create appium driver based on platform
package com.testvagrant.optimus.core.models;
import lombok.*;
@Getter
@Setter
@Builder(toBuilder = true, builderMethodName = "configBuilder")
@NoArgsConstructor
@AllArgsConstructor
public class CloudConfig {
@Builder.Default
private String username = "";
@Builder.Default
private String accessKey = "";
@Builder.Default
private String hub = "";
@Builder.Default
private String url = "";
@Builder.Default
private String protocol = "https";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy