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

b4j.core.Version Maven / Gradle / Ivy

/*
 * This file is part of Bugzilla for Java.
 *
 *  Bugzilla for Java is free software: you can redistribute it 
 *  and/or modify it under the terms of version 3 of the GNU 
 *  Lesser General Public  License as published by the Free Software 
 *  Foundation.
 *  
 *  Bugzilla for Java is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public 
 *  License along with Bugzilla for Java.  If not, see 
 *  .
 */
package b4j.core;

import java.util.Date;

/**
 * Version information.
 * @author ralph
 *
 */
public interface Version extends BugzillaObject {

	/**
	 * Returns the project.
	 * @return the project
	 */
	public Project getProject();
	
	/**
	 * Returns the ID.
	 * @return the ID of the version
	 */
	public Long getId();
	
	/**
	 * Returns the name.
	 * @return the name of the version
	 */
	public String getName();

	/**
	 * Returns the release date.
	 * @return the release date of the version
	 */
	public Date getReleaseDate();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy