com.helger.photon.connect.connection.AbstractServerConnectionSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-oton-connect Show documentation
Show all versions of ph-oton-connect Show documentation
Connectivity part of the ph-oton stack
The newest version!
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.helger.photon.connect.connection;
import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
import javax.annotation.concurrent.Immutable;
import com.helger.commons.ValueEnforcer;
import com.helger.commons.annotation.Nonempty;
import com.helger.commons.string.ToStringGenerator;
import com.helger.network.port.NetworkPortHelper;
/**
* Default abstract implementation of the {@link IBaseServerConnectionSettings}
* interface.
*
* @author philip
*/
@Immutable
public abstract class AbstractServerConnectionSettings implements IBaseServerConnectionSettings
{
private final String m_sAddress;
private final int m_nPort;
private final int m_nConnectionTimeoutMillis;
private final String m_sUserName;
public AbstractServerConnectionSettings (@Nonnull @Nonempty final String sIP,
@Nonnegative final int nPort,
final int nConnectionTimeoutMillis,
@Nonnull @Nonempty final String sUserName)
{
ValueEnforcer.notEmpty (sIP, "Address");
if (!NetworkPortHelper.isValidPort (nPort))
throw new IllegalArgumentException ("port is invalid: " + nPort);
ValueEnforcer.notEmpty (sUserName, "UserName");
m_sAddress = sIP;
m_nPort = nPort;
m_nConnectionTimeoutMillis = nConnectionTimeoutMillis;
m_sUserName = sUserName;
}
@Nonnull
@Nonempty
public final String getServerAddress ()
{
return m_sAddress;
}
@Nonnegative
public final int getServerPort ()
{
return m_nPort;
}
public int getConnectionTimeoutMillis ()
{
return m_nConnectionTimeoutMillis;
}
@Nonnull
@Nonempty
public final String getUserName ()
{
return m_sUserName;
}
@Override
public String toString ()
{
return new ToStringGenerator (this).append ("Address", m_sAddress)
.append ("Port", m_nPort)
.append ("Username", m_sUserName)
.append ("ConnectionTimeoutMillis", m_nConnectionTimeoutMillis)
.getToString ();
}
}