Added java code formatter and formatting of opflex java files
[groupbasedpolicy.git] / renderers / opflex / src / main / java / org / opendaylight / groupbasedpolicy / renderer / opflex / lib / messages / EndpointUpdateRequest.java
index a99a2fca35a97d5b7719385cc60ad166dd92c9bd..96f7294469b5b384b36500a00caefa15216a0636 100644 (file)
@@ -1,10 +1,10 @@
 /*
  * Copyright (C) 2014 Cisco Systems, Inc.
- *
+ * 
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
+ * 
  * Authors : Thomas Bachman
  */
 package org.opendaylight.groupbasedpolicy.renderer.opflex.lib.messages;
@@ -26,22 +26,27 @@ public class EndpointUpdateRequest extends RpcMessage {
     public static final String EP_UPDATE_MESSAGE = "endpoint_update";
 
     static public class Params {
+
         private List<ManagedObject> replace;
         private List<Uri> delete_uri;
 
         public List<ManagedObject> getReplace() {
             return replace;
         }
+
         public void setReplace(List<ManagedObject> replace) {
             this.replace = replace;
         }
+
         public List<Uri> getDelete_uri() {
             return delete_uri;
         }
+
         public void setDelete_uri(List<Uri> delete_uri) {
             this.delete_uri = delete_uri;
         }
     }
+
     private JsonNode id;
     private String method;
     private List<Params> params;
@@ -98,6 +103,7 @@ public class EndpointUpdateRequest extends RpcMessage {
 
     /**
      * Minimal check on validity of message
+     * 
      * @return true if message has passed validity check
      */
     @JsonIgnore