| .. | .. |
|---|
| 34 | 34 | { @NamedQuery(name = "list-license_types", query = "SELECT lt FROM LicenseType lt") }) |
|---|
| 35 | 35 | public class LicenseType implements Serializable { |
|---|
| 36 | 36 | |
|---|
| 37 | | - private static final Logger log = LogManager.getLogger(LicenseType.class); |
|---|
| 37 | + private static final Logger LOG = LogManager.getLogger(LicenseType.class); |
|---|
| 38 | 38 | private static final long serialVersionUID = 1L; |
|---|
| 39 | 39 | |
|---|
| 40 | 40 | @Id |
|---|
| .. | .. |
|---|
| 96 | 96 | |
|---|
| 97 | 97 | @JsonProperty("application_id") |
|---|
| 98 | 98 | public Integer getApplicationId() { |
|---|
| 99 | | - log.info("application " + application); |
|---|
| 99 | + LOG.info("application " + application); |
|---|
| 100 | 100 | return application == null ? null : application.getId(); |
|---|
| 101 | 101 | } |
|---|
| 102 | 102 | |
|---|
| 103 | 103 | @JsonProperty("application_id") |
|---|
| 104 | 104 | public void setApplicationId(Integer appId) { |
|---|
| 105 | | - log.info("setApplicationId(Integer appId) " + appId); |
|---|
| 105 | + LOG.info("setApplicationId(Integer appId) " + appId); |
|---|
| 106 | 106 | application = new Application(); |
|---|
| 107 | 107 | application.setId(appId); |
|---|
| 108 | 108 | } |
|---|