Skip to content

Commit

Permalink
refactor(form.movingItemInQueue): reduce code with lombok
Browse files Browse the repository at this point in the history
  • Loading branch information
davinkevin committed Jan 13, 2016
1 parent 5ec29c5 commit a5881ad
Showing 1 changed file with 3 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,26 +1,12 @@
package lan.dk.podcastserver.utils.form;

import lombok.Data;

/**
* Created by kevin on 30/01/15.
*/
@Data
public class MovingItemInQueueForm {

private Integer id;
private Integer position;

public Integer getId() {
return id;
}

public void setId(Integer id) {
this.id = id;
}

public Integer getPosition() {
return position;
}

public void setPosition(Integer position) {
this.position = position;
}
}

0 comments on commit a5881ad

Please sign in to comment.