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

com.dlmorais.livelog.LogLineDTO Maven / Gradle / Ivy

There is a newer version: 0.0.8
Show newest version
package com.dlmorais.livelog;

/**
 * DTO of a log line.
 *
 * @author dlmorais ([email protected])
 */
public class LogLineDTO {

	/** Line number. */
	private Long line;

	/** Line content. */
	private String content;

	/**
	 * @return the line
	 */
	public Long getLine() {
		return this.line;
	}

	/**
	 * @param line
	 *            the line to set
	 */
	public void setLine(final Long line) {
		this.line = line;
	}

	/**
	 * @return the content
	 */
	public String getContent() {
		return this.content;
	}

	/**
	 * @param content
	 *            the content to set
	 */
	public void setContent(final String content) {
		this.content = content;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy