com.helger.photon.connect.connection.ServerConnectionSettingsKeyPair 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.annotation.ReturnsMutableCopy;
import com.helger.commons.collection.ArrayHelper;
import com.helger.commons.string.ToStringGenerator;
/**
* Default implementation of the {@link IServerConnectionSettingsKeyPair}
* interface.
*
* @author philip
*/
@Immutable
public class ServerConnectionSettingsKeyPair extends AbstractServerConnectionSettings implements IServerConnectionSettingsKeyPair
{
private final byte [] m_aPrivateKeyBytes;
private final byte [] m_aPublicKeyBytes;
private final byte [] m_aKeyPairPassphrase;
public ServerConnectionSettingsKeyPair (@Nonnull @Nonempty final String sIP,
@Nonnegative final int nPort,
final int nConnectionTimeoutMillis,
@Nonnull @Nonempty final String sUserName,
@Nonnull @Nonempty final byte [] aPrivateKeyBytes,
@Nonnull @Nonempty final byte [] aPublicKeyBytes,
@Nonnull final byte [] aKeyPairPassphrase)
{
super (sIP, nPort, nConnectionTimeoutMillis, sUserName);
m_aPrivateKeyBytes = ArrayHelper.getCopy (ValueEnforcer.notEmpty (aPrivateKeyBytes, "PrivateKeyBytes"));
m_aPublicKeyBytes = ArrayHelper.getCopy (ValueEnforcer.notEmpty (aPublicKeyBytes, "PublicKeyBytes"));
m_aKeyPairPassphrase = ArrayHelper.getCopy (ValueEnforcer.notNull (aKeyPairPassphrase, "KeyPairPassphrase"));
}
@Nonnull
@Nonempty
@ReturnsMutableCopy
public byte [] getPrivateKey ()
{
return ArrayHelper.getCopy (m_aPrivateKeyBytes);
}
@Nonnull
@Nonempty
@ReturnsMutableCopy
public byte [] getPublicKey ()
{
return ArrayHelper.getCopy (m_aPublicKeyBytes);
}
@Nonnull
@ReturnsMutableCopy
public byte [] getKeyPairPassphrase ()
{
return ArrayHelper.getCopy (m_aKeyPairPassphrase);
}
@Override
public String toString ()
{
return ToStringGenerator.getDerived (super.toString ())
.append ("PrivateKeyBytes#", m_aPrivateKeyBytes.length)
.append ("PublicKeyBytes#", m_aPublicKeyBytes.length)
.appendPassword ("KeyPairPassphrase")
.getToString ();
}
}