All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
shaded.org.apache.maven.model.Scm Maven / Gradle / Ivy
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.11,
// any modifications will be overwritten.
// ==============================================================
package shaded.shaded.org.apache.maven.model;
/**
*
*
* The <scm>
element contains
* informations required to the SCM
* (Source Control Management) of the project.
*
*
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class Scm
implements java.io.Serializable, java.lang.Cloneable, shaded.shaded.org.apache.maven.model.InputLocationTracker
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
*
*
* The source control management system URL
* that describes the repository and how to connect
* to the
* repository. For more information, see the
* URL
* format
* and list
* of supported SCMs .
* This connection is read-only.
* Default value is : parent value [+
* path adjustment] + (artifactId or project.directory
* property), or just parent value if
* scm's
* child.scm.connection.inherit.append.path="false"
*
*
*/
private String connection;
/**
*
*
* Just like connection
, but for
* developers, i.e. this scm connection
* will not be read only.
* Default value is : parent value [+
* path adjustment] + (artifactId or project.directory
* property), or just parent value if
* scm's
* child.scm.developerConnection.inherit.append.path="false"
*
*
*/
private String developerConnection;
/**
* The tag of current code. By default, it's set to HEAD during
* development.
*/
private String tag = "HEAD";
/**
*
*
* The URL to the project's browsable SCM
* repository, such as ViewVC or Fisheye.
* Default value is : parent value [+
* path adjustment] + (artifactId or project.directory
* property), or just parent value if
* scm's
* child.scm.url.inherit.append.path="false"
*
*
*/
private String url;
/**
*
*
* When children inherit from scm connection,
* append path or not? Note: While the type
* of this field is String
for
* technical reasons, the semantic type is actually
* Boolean
* Default value is : true
* Since : Maven 3.6.1
*
* .
*/
private String childScmConnectionInheritAppendPath;
/**
*
*
* When children inherit from scm developer
* connection, append path or not? Note: While the type
* of this field is String
for
* technical reasons, the semantic type is actually
* Boolean
* Default value is : true
* Since : Maven 3.6.1
*
* .
*/
private String childScmDeveloperConnectionInheritAppendPath;
/**
*
*
* When children inherit from scm url, append path
* or not? Note: While the type
* of this field is String
for
* technical reasons, the semantic type is actually
* Boolean
* Default value is : true
* Since : Maven 3.6.1
*
* .
*/
private String childScmUrlInheritAppendPath;
/**
* Field locations.
*/
private java.util.Map locations;
/**
* Field location.
*/
private InputLocation location;
/**
* Field connectionLocation.
*/
private InputLocation connectionLocation;
/**
* Field developerConnectionLocation.
*/
private InputLocation developerConnectionLocation;
/**
* Field tagLocation.
*/
private InputLocation tagLocation;
/**
* Field urlLocation.
*/
private InputLocation urlLocation;
/**
* Field childScmConnectionInheritAppendPathLocation.
*/
private InputLocation childScmConnectionInheritAppendPathLocation;
/**
* Field childScmDeveloperConnectionInheritAppendPathLocation.
*/
private InputLocation childScmDeveloperConnectionInheritAppendPathLocation;
/**
* Field childScmUrlInheritAppendPathLocation.
*/
private InputLocation childScmUrlInheritAppendPathLocation;
//-----------/
//- Methods -/
//-----------/
/**
* Method clone.
*
* @return Scm
*/
public Scm clone()
{
try
{
Scm copy = (Scm) super.clone();
if ( copy.locations != null )
{
copy.locations = new java.util.LinkedHashMap( copy.locations );
}
return copy;
}
catch ( java.lang.Exception ex )
{
throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
+ " does not support clone()" ).initCause( ex );
}
} //-- Scm clone()
/**
* Get when children inherit from scm connection, append path
* or not? Note: While the type
* of this field is String
for
* technical reasons, the semantic type is actually
* Boolean
* Default value is : true
* Since : Maven 3.6.1.
*
* @return String
*/
public String getChildScmConnectionInheritAppendPath()
{
return this.childScmConnectionInheritAppendPath;
} //-- String getChildScmConnectionInheritAppendPath()
/**
* Get when children inherit from scm developer connection,
* append path or not? Note: While the type
* of this field is String
for
* technical reasons, the semantic type is actually
* Boolean
* Default value is : true
* Since : Maven 3.6.1.
*
* @return String
*/
public String getChildScmDeveloperConnectionInheritAppendPath()
{
return this.childScmDeveloperConnectionInheritAppendPath;
} //-- String getChildScmDeveloperConnectionInheritAppendPath()
/**
* Get when children inherit from scm url, append path or not?
* Note: While the type
* of this field is String
for
* technical reasons, the semantic type is actually
* Boolean
* Default value is : true
* Since : Maven 3.6.1.
*
* @return String
*/
public String getChildScmUrlInheritAppendPath()
{
return this.childScmUrlInheritAppendPath;
} //-- String getChildScmUrlInheritAppendPath()
/**
* Get the source control management system URL
* that describes the repository and how to connect
* to the
* repository. For more information, see the
* URL
* format
* and list
* of supported SCMs .
* This connection is read-only.
* Default value is : parent value [+
* path adjustment] + (artifactId or project.directory
* property), or just parent value if
* scm's
* child.scm.connection.inherit.append.path="false"
*
* @return String
*/
public String getConnection()
{
return this.connection;
} //-- String getConnection()
/**
* Get just like connection
, but for developers,
* i.e. this scm connection
* will not be read only.
* Default value is : parent value [+
* path adjustment] + (artifactId or project.directory
* property), or just parent value if
* scm's
* child.scm.developerConnection.inherit.append.path="false"
*
* @return String
*/
public String getDeveloperConnection()
{
return this.developerConnection;
} //-- String getDeveloperConnection()
/**
*
*
* @param key
* @return InputLocation
*/
public InputLocation getLocation( Object key )
{
if ( key instanceof String )
{
switch ( ( String ) key )
{
case "" :
{
return this.location;
}
case "connection" :
{
return connectionLocation;
}
case "developerConnection" :
{
return developerConnectionLocation;
}
case "tag" :
{
return tagLocation;
}
case "url" :
{
return urlLocation;
}
case "childScmConnectionInheritAppendPath" :
{
return childScmConnectionInheritAppendPathLocation;
}
case "childScmDeveloperConnectionInheritAppendPath" :
{
return childScmDeveloperConnectionInheritAppendPathLocation;
}
case "childScmUrlInheritAppendPath" :
{
return childScmUrlInheritAppendPathLocation;
}
default :
{
return getOtherLocation( key );
}
}
}
else
{
return getOtherLocation( key );
}
} //-- InputLocation getLocation( Object )
/**
*
*
* @param key
* @param location
*/
public void setLocation( Object key, InputLocation location )
{
if ( key instanceof String )
{
switch ( ( String ) key )
{
case "" :
{
this.location = location;
return;
}
case "connection" :
{
connectionLocation = location;
return;
}
case "developerConnection" :
{
developerConnectionLocation = location;
return;
}
case "tag" :
{
tagLocation = location;
return;
}
case "url" :
{
urlLocation = location;
return;
}
case "childScmConnectionInheritAppendPath" :
{
childScmConnectionInheritAppendPathLocation = location;
return;
}
case "childScmDeveloperConnectionInheritAppendPath" :
{
childScmDeveloperConnectionInheritAppendPathLocation = location;
return;
}
case "childScmUrlInheritAppendPath" :
{
childScmUrlInheritAppendPathLocation = location;
return;
}
default :
{
setOtherLocation( key, location );
return;
}
}
}
else
{
setOtherLocation( key, location );
}
} //-- void setLocation( Object, InputLocation )
/**
*
*
* @param key
* @param location
*/
public void setOtherLocation( Object key, InputLocation location )
{
if ( location != null )
{
if ( this.locations == null )
{
this.locations = new java.util.LinkedHashMap();
}
this.locations.put( key, location );
}
} //-- void setOtherLocation( Object, InputLocation )
/**
*
*
* @param key
* @return InputLocation
*/
private InputLocation getOtherLocation( Object key )
{
return ( locations != null ) ? locations.get( key ) : null;
} //-- InputLocation getOtherLocation( Object )
/**
* Get the tag of current code. By default, it's set to HEAD
* during development.
*
* @return String
*/
public String getTag()
{
return this.tag;
} //-- String getTag()
/**
* Get the URL to the project's browsable SCM repository, such
* as ViewVC or Fisheye.
* Default value is : parent value [+
* path adjustment] + (artifactId or project.directory
* property), or just parent value if
* scm's
* child.scm.url.inherit.append.path="false"
*
* @return String
*/
public String getUrl()
{
return this.url;
} //-- String getUrl()
/**
* Set when children inherit from scm connection, append path
* or not? Note: While the type
* of this field is String
for
* technical reasons, the semantic type is actually
* Boolean
* Default value is : true
* Since : Maven 3.6.1.
*
* @param childScmConnectionInheritAppendPath
*/
public void setChildScmConnectionInheritAppendPath( String childScmConnectionInheritAppendPath )
{
this.childScmConnectionInheritAppendPath = childScmConnectionInheritAppendPath;
} //-- void setChildScmConnectionInheritAppendPath( String )
/**
* Set when children inherit from scm developer connection,
* append path or not? Note: While the type
* of this field is String
for
* technical reasons, the semantic type is actually
* Boolean
* Default value is : true
* Since : Maven 3.6.1.
*
* @param childScmDeveloperConnectionInheritAppendPath
*/
public void setChildScmDeveloperConnectionInheritAppendPath( String childScmDeveloperConnectionInheritAppendPath )
{
this.childScmDeveloperConnectionInheritAppendPath = childScmDeveloperConnectionInheritAppendPath;
} //-- void setChildScmDeveloperConnectionInheritAppendPath( String )
/**
* Set when children inherit from scm url, append path or not?
* Note: While the type
* of this field is String
for
* technical reasons, the semantic type is actually
* Boolean
* Default value is : true
* Since : Maven 3.6.1.
*
* @param childScmUrlInheritAppendPath
*/
public void setChildScmUrlInheritAppendPath( String childScmUrlInheritAppendPath )
{
this.childScmUrlInheritAppendPath = childScmUrlInheritAppendPath;
} //-- void setChildScmUrlInheritAppendPath( String )
/**
* Set the source control management system URL
* that describes the repository and how to connect
* to the
* repository. For more information, see the
* URL
* format
* and list
* of supported SCMs .
* This connection is read-only.
* Default value is : parent value [+
* path adjustment] + (artifactId or project.directory
* property), or just parent value if
* scm's
* child.scm.connection.inherit.append.path="false"
*
* @param connection
*/
public void setConnection( String connection )
{
this.connection = connection;
} //-- void setConnection( String )
/**
* Set just like connection
, but for developers,
* i.e. this scm connection
* will not be read only.
* Default value is : parent value [+
* path adjustment] + (artifactId or project.directory
* property), or just parent value if
* scm's
* child.scm.developerConnection.inherit.append.path="false"
*
* @param developerConnection
*/
public void setDeveloperConnection( String developerConnection )
{
this.developerConnection = developerConnection;
} //-- void setDeveloperConnection( String )
/**
* Set the tag of current code. By default, it's set to HEAD
* during development.
*
* @param tag
*/
public void setTag( String tag )
{
this.tag = tag;
} //-- void setTag( String )
/**
* Set the URL to the project's browsable SCM repository, such
* as ViewVC or Fisheye.
* Default value is : parent value [+
* path adjustment] + (artifactId or project.directory
* property), or just parent value if
* scm's
* child.scm.url.inherit.append.path="false"
*
* @param url
*/
public void setUrl( String url )
{
this.url = url;
} //-- void setUrl( String )
public boolean isChildScmConnectionInheritAppendPath()
{
return ( childScmConnectionInheritAppendPath != null ) ? Boolean.parseBoolean( childScmConnectionInheritAppendPath ) : true;
}
public void setChildScmConnectionInheritAppendPath( boolean childScmConnectionInheritAppendPath )
{
this.childScmConnectionInheritAppendPath = String.valueOf( childScmConnectionInheritAppendPath );
}
public boolean isChildScmDeveloperConnectionInheritAppendPath()
{
return ( childScmDeveloperConnectionInheritAppendPath != null ) ? Boolean.parseBoolean( childScmDeveloperConnectionInheritAppendPath ) : true;
}
public void setChildScmDeveloperConnectionInheritAppendPath( boolean childScmDeveloperConnectionInheritAppendPath )
{
this.childScmDeveloperConnectionInheritAppendPath = String.valueOf( childScmDeveloperConnectionInheritAppendPath );
}
public boolean isChildScmUrlInheritAppendPath()
{
return ( childScmUrlInheritAppendPath != null ) ? Boolean.parseBoolean( childScmUrlInheritAppendPath ) : true;
}
public void setChildScmUrlInheritAppendPath( boolean childScmUrlInheritAppendPath )
{
this.childScmUrlInheritAppendPath = String.valueOf( childScmUrlInheritAppendPath );
}
}