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

org.apache.wicket.examples.basic.guestbook.Comment Maven / Gradle / Ivy

The newest version!
package org.apache.wicket.examples.basic.guestbook;

import java.util.Date;

public class Comment {
	private final String author;
	private final String text;
	private final Date createdAt;

	public Comment(String author, String text) {
		this.author = author;
		this.text = text;
		this.createdAt = new Date();
	}

	public String getAuthor() {
		return author;
	}

	public String getText() {
		return text;
	}

	public Date getCreatedAt() {
		return createdAt;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy