public void addCoffee()

in eap-coffee-app/src/main/java/cafe/web/view/Cafe.java [86:92]


	public void addCoffee() throws IOException {
		Coffee coffee = new Coffee(this.name, this.price);
		this.client.target(baseUri).request(MediaType.APPLICATION_JSON).post(Entity.json(coffee));
		this.name = null;
		this.price = null;
		FacesContext.getCurrentInstance().getExternalContext().redirect("");
	}