rename scm-server-util to scm-server-api and added scm-server-jetty

This commit is contained in:
Sebastian Sdorra
2010-09-11 17:59:11 +02:00
parent 85cb34f498
commit e45a5e62ae
15 changed files with 1059 additions and 11 deletions

View File

@@ -0,0 +1,100 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package sonia.scm.server;
//~--- JDK imports ------------------------------------------------------------
import javax.xml.bind.annotation.XmlRootElement;
/**
*
* @author Sebastian Sdorra
*/
@XmlRootElement(name = "app-info")
public class ApplicationInformation
{
/**
* Method description
*
*
* @return
*/
public String getAppName()
{
return appName;
}
/**
* Method description
*
*
* @return
*/
public String getName()
{
return name;
}
/**
* Method description
*
*
* @return
*/
public String getVersion()
{
return version;
}
//~--- set methods ----------------------------------------------------------
/**
* Method description
*
*
* @param appName
*/
public void setAppName(String appName)
{
this.appName = appName;
}
/**
* Method description
*
*
* @param name
*/
public void setName(String name)
{
this.name = name;
}
/**
* Method description
*
*
* @param version
*/
public void setVersion(String version)
{
this.version = version;
}
//~--- fields ---------------------------------------------------------------
/** Field description */
private String appName;
/** Field description */
private String name;
/** Field description */
private String version;
}