added server port configuration for mod_jk and mod_proxy

This commit is contained in:
Sebastian Sdorra
2011-02-06 15:32:12 +01:00
parent 33a912c32f
commit b70879cb48
3 changed files with 60 additions and 1 deletions

View File

@@ -94,6 +94,17 @@ public class ScmConfiguration
return pluginUrl;
}
/**
* Method description
*
*
* @return
*/
public int getPort()
{
return port;
}
/**
* Method description
*
@@ -173,6 +184,17 @@ public class ScmConfiguration
this.pluginUrl = pluginUrl;
}
/**
* Method description
*
*
* @param port
*/
public void setPort(int port)
{
this.port = port;
}
/**
* Method description
*
@@ -201,6 +223,9 @@ public class ScmConfiguration
@XmlElement(name = "plugin-url")
private String pluginUrl = DEFAULT_PLUGINURL;
/** Field description */
private int port = -1;
/** Field description */
private String servername = "localhost";