Code Search for Developers
 
 
  

ServerConfiguration.java from MASE: Agile Software Engineering at Krugle


Show ServerConfiguration.java syntax highlighted

package ca.ucalgary.cpsc.ebe.fitClipse.connector;

import java.io.Serializable;

public class ServerConfiguration implements Serializable{
	public static String DEFAULT_HOST = "localhost";
	public static String DEFAULT_BEAN_PORT = "1099";
	public static String DEFAULT_WEB_PORT = "8080";
	public static String DEFAULT_USERNAME = "";
	public static String DEFAULT_PASSWORD = "";
	public static String DEFAULT_WEB_PATH = "/ebe/";
	
	private String host = null;
	private String beanPort = null;
	private String webPort = null;
	private String username = null;
	private String password = null;
	private String webPath = null;
	
	
	public String getWebPath() {
		return webPath;
	}
	public void setWebPath(String webPath) {
		this.webPath = webPath;
	}
	public String getBeanPort() {
		return beanPort;
	}
	public void setBeanPort(String beanPort) {
		this.beanPort = beanPort;
	}
	public String getHost() {
		return host;
	}
	public void setHost(String host) {
		this.host = host;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	public String getUsername() {
		return username;
	}
	public void setUsername(String username) {
		this.username = username;
	}
	public String getWebPort() {
		return webPort;
	}
	public void setWebPort(String webPort) {
		this.webPort = webPort;
	}
	
	
}




See more files for this project here

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  BeanConnector.java
  BeanConnectorFactory.java
  MaseSystem.java
  ServerConfiguration.java
  ServletConnector.java