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

net.gdface.facelog.client.location.MacProvider Maven / Gradle / Ivy

The newest version!
package net.gdface.facelog.client.location;

import gu.dtalk.engine.DefaultDevInfoProvider;

public class MacProvider extends DefaultDevInfoProvider {
	private static ConnectConfigType connectType = ConnectConfigType.lookupFacelogConnectUnchecked();

	public MacProvider() {
		super(hostOf(),portOf());
	}
	private static String hostOf(){
		return connectType == null ? null : connectType.getHost();
	}
	private static int portOf(){
		return connectType == null ? 0 : connectType.getPort();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy