AddCountryView.java
1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package org.legrog.web.xyz;
import org.legrog.entities.Country;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.enterprise.context.RequestScoped;
import javax.inject.Inject;
import javax.inject.Named;
import java.io.Serializable;
@Named
@RequestScoped
public class AddCountryView implements Serializable {
transient Logger logger = LoggerFactory.getLogger(getClass());
private SharedService sharedService;
private String countryName;
public AddCountryView() {
}
@Inject
public AddCountryView(SharedService sharedService) {
this.sharedService = sharedService;
}
public void add() {
Country country = new Country();
country.setCountryName(countryName);
country = sharedService.addCountry(country);
countryName = "";
}
public String getCountryName() {
return countryName;
}
public void setCountryName(String countryName) {
this.countryName = countryName;
}
}