Using AutoAssignProperties with EnableConfigurationProperties. Code quality improvements.

Signed-off-by: Dominik Herbst <dominik.herbst@bosch-si.com>
This commit is contained in:
Dominik Herbst
2016-10-04 08:19:44 +02:00
parent 38bd54fe6e
commit f481e097db
4 changed files with 5 additions and 19 deletions

View File

@@ -21,32 +21,18 @@ public class MgmtTargetFilterQueryRequestBody {
@JsonProperty(required = true)
private String query;
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name
* the name to set
*/
public void setName(final String name) {
this.name = name;
}
/**
* @return the filter query
*/
public String getQuery() {
return query;
}
/**
* @param query
* the filter query
*/
public void setQuery(String query) {
this.query = query;
}