AddCountryView.java
1.27 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
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;
/**
* addCountry.xhtml's view
* Used for adding new countries
*/
@Named
@RequestScoped
public class AddCountryView implements Serializable {
transient Logger logger = LoggerFactory.getLogger(getClass());
private transient SharedService sharedService;
private transient String countryName;
public AddCountryView() {
//no args constructor to make it proxyable
}
/**
* Uses SharedService to add countries
*
* @param sharedService injected SharedService
*/
@Inject
public AddCountryView(SharedService sharedService) {
this.sharedService = sharedService;
}
/**
* Adds the country named in the form
*/
public void add() {
Country country = new Country();
country.setCountryName(countryName);
sharedService.addCountry(country);
countryName = "";
}
public String getCountryName() {
return countryName;
}
public void setCountryName(String countryName) {
this.countryName = countryName;
}
}