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

com.jdroid.java.http.Server Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
package com.jdroid.java.http;

import java.util.List;

public interface Server {
	
	public String getName();
	
	public String getBaseUrl();
	
	public Boolean supportsSsl();
	
	public Boolean isProduction();
	
	public List getHttpServiceProcessors();
	
	public Server instance(String name);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy