All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.smyld.db.DBConnAddress Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package org.smyld.db;

import org.smyld.SMYLDObject;

public class DBConnAddress extends SMYLDObject {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	String ip;
	String port;

	public DBConnAddress() {
	}

	public String getIp() {
		return ip;
	}

	public void setIp(String ip) {
		this.ip = ip;
	}

	public String getPort() {
		return port;
	}

	public void setPort(String port) {
		this.port = port;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy