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

poem.command.AskForPoem Maven / Gradle / Ivy

There is a newer version: 0.6.6
Show newest version
package poem.command;

/**
 * Command object representing the user request for a poem in a certain
 * language. Supported languages are: "de" for German, "en" for English.
 * 
 * @author b_muth
 *
 */
public class AskForPoem {
	private String language;

	public AskForPoem(String language) {
		this.language = language;
	}

	public String getLanguage() {
		return language;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy