private final int standard;
private final int https;
public ClientServerPorts() {
ReadOnlyProperties clientProps = ClientApplicationProperties.getInstance();
standard = clientProps.getInt(APACHE_PORT_NON_SSL, 80);
https = clientProps.getInt(APACHE_PORT_SSL, 80);
}