Commit 3526b07c authored by Greg Messner's avatar Greg Messner
Browse files

Moved reordered properties.

parent 9fbcbf9d
......@@ -13,8 +13,8 @@ public class MergeRequestEvent implements Event {
private User user;
private EventProject project;
private ObjectAttributes objectAttributes;
private EventRepository repository;
private ObjectAttributes objectAttributes;
public String getObjectKind() {
return (OBJECT_KIND);
......@@ -41,14 +41,6 @@ public class MergeRequestEvent implements Event {
this.project = project;
}
public ObjectAttributes getObjectAttributes() {
return this.objectAttributes;
}
public void setObjectAttributes(ObjectAttributes objectAttributes) {
this.objectAttributes = objectAttributes;
}
public EventRepository getRepository() {
return repository;
}
......@@ -57,6 +49,14 @@ public class MergeRequestEvent implements Event {
this.repository = repository;
}
public ObjectAttributes getObjectAttributes() {
return this.objectAttributes;
}
public void setObjectAttributes(ObjectAttributes objectAttributes) {
this.objectAttributes = objectAttributes;
}
@XmlAccessorType(XmlAccessType.FIELD)
public static class ObjectAttributes extends EventMergeRequest {
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment