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

com.neotys.neoload.model.v3.util.URL Maven / Gradle / Ivy

package com.neotys.neoload.model.v3.util;

import java.util.Optional;

import org.immutables.value.Value;

import com.neotys.neoload.model.v3.project.server.Server;

@Value.Immutable
public interface URL {
	Optional getServer();
	String getPath();
	Optional getQuery();
	
	class Builder extends ImmutableURL.Builder {}
	static Builder builder() {
		return new Builder();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy