org.apache.maven.settings.Server Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
/*
=================== DO NOT EDIT THIS FILE ====================
Generated by Modello 1.0.1 on 2009-08-06 15:13:31,
any modifications will be overwritten.
==============================================================
*/
package org.apache.maven.settings;
/**
*
*
* The <server>
element contains
* informations required to a server settings.
*
*
* @version $Revision$ $Date$
*/
public class Server
extends IdentifiableBase
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
*
*
* The username used to authenticate.
*
*
*/
private String username;
/**
*
*
* The password used in conjunction with the
* username to authenticate.
*
*
*/
private String password;
/**
*
*
* The private key location used to authenticate.
*
*
*/
private String privateKey;
/**
*
*
* The passphrase used in conjunction with the
* privateKey to authenticate.
*
*
*/
private String passphrase;
/**
*
*
* The permissions for files when they are created.
*
*
*/
private String filePermissions;
/**
*
*
* The permissions for directories when they are
* created.
*
*
*/
private String directoryPermissions;
/**
*
*
* Extra configuration for the transport layer.
*
*
*/
private Object configuration;
//-----------/
//- Methods -/
//-----------/
/**
* Get extra configuration for the transport layer.
*
* @return Object
*/
public Object getConfiguration()
{
return this.configuration;
} //-- Object getConfiguration()
/**
* Get the permissions for directories when they are created.
*
* @return String
*/
public String getDirectoryPermissions()
{
return this.directoryPermissions;
} //-- String getDirectoryPermissions()
/**
* Get the permissions for files when they are created.
*
* @return String
*/
public String getFilePermissions()
{
return this.filePermissions;
} //-- String getFilePermissions()
/**
* Get the passphrase used in conjunction with the privateKey
* to authenticate.
*
* @return String
*/
public String getPassphrase()
{
return this.passphrase;
} //-- String getPassphrase()
/**
* Get the password used in conjunction with the username to
* authenticate.
*
* @return String
*/
public String getPassword()
{
return this.password;
} //-- String getPassword()
/**
* Get the private key location used to authenticate.
*
* @return String
*/
public String getPrivateKey()
{
return this.privateKey;
} //-- String getPrivateKey()
/**
* Get the username used to authenticate.
*
* @return String
*/
public String getUsername()
{
return this.username;
} //-- String getUsername()
/**
* Set extra configuration for the transport layer.
*
* @param configuration
*/
public void setConfiguration( Object configuration )
{
this.configuration = configuration;
} //-- void setConfiguration( Object )
/**
* Set the permissions for directories when they are created.
*
* @param directoryPermissions
*/
public void setDirectoryPermissions( String directoryPermissions )
{
this.directoryPermissions = directoryPermissions;
} //-- void setDirectoryPermissions( String )
/**
* Set the permissions for files when they are created.
*
* @param filePermissions
*/
public void setFilePermissions( String filePermissions )
{
this.filePermissions = filePermissions;
} //-- void setFilePermissions( String )
/**
* Set the passphrase used in conjunction with the privateKey
* to authenticate.
*
* @param passphrase
*/
public void setPassphrase( String passphrase )
{
this.passphrase = passphrase;
} //-- void setPassphrase( String )
/**
* Set the password used in conjunction with the username to
* authenticate.
*
* @param password
*/
public void setPassword( String password )
{
this.password = password;
} //-- void setPassword( String )
/**
* Set the private key location used to authenticate.
*
* @param privateKey
*/
public void setPrivateKey( String privateKey )
{
this.privateKey = privateKey;
} //-- void setPrivateKey( String )
/**
* Set the username used to authenticate.
*
* @param username
*/
public void setUsername( String username )
{
this.username = username;
} //-- void setUsername( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy