Feature uses features-parent as parent
[groupbasedpolicy.git] / renderers / opflex / src / main / java / org / opendaylight / groupbasedpolicy / renderer / opflex / lib / messages / EndpointDeclareRequest.java
index 2179c26485b51342287fb4b41c9d1bd18cacd398..adfb0df5e57ec1bb787cf8ecd325dc8d3d111249 100644 (file)
@@ -1,17 +1,17 @@
 /*
  * 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;
 
 import java.util.List;
 
-import org.opendaylight.groupbasedpolicy.jsonrpc.RpcMessage;
+import org.opendaylight.groupbasedpolicy.renderer.opflex.jsonrpc.RpcMessage;
 
 import com.fasterxml.jackson.annotation.JsonIgnore;
 import com.fasterxml.jackson.databind.JsonNode;
@@ -25,21 +25,27 @@ public class EndpointDeclareRequest extends RpcMessage {
     public static final String DECLARE_MESSAGE = "endpoint_declare";
 
     static public class Params {
+
         private List<ManagedObject> endpoint;
         private int prr;
+
         public List<ManagedObject> getEndpoint() {
             return endpoint;
         }
+
         public void setEndpoint(List<ManagedObject> endpoint) {
             this.endpoint = endpoint;
         }
+
         public int getPrr() {
             return prr;
         }
+
         public void setPrr(int prr) {
             this.prr = prr;
         }
     }
+
     private JsonNode id;
     private String method;
     private List<Params> params;
@@ -96,6 +102,7 @@ public class EndpointDeclareRequest extends RpcMessage {
 
     /**
      * Minimal check on validity of message
+     * 
      * @return true if message has passed validity check
      */
     @JsonIgnore