Move JSON-RPC lib to OpFlex.
[groupbasedpolicy.git] / renderers / opflex / src / main / java / org / opendaylight / groupbasedpolicy / renderer / opflex / lib / messages / PolicyResolveRequest.java
index 886483792096cc572b984fdb8ce12a86503f79af..d9b30474a13cee5460336758183ff6546d4918b5 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 org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Uri;
 
 import com.fasterxml.jackson.annotation.JsonIgnore;
@@ -26,6 +26,7 @@ public class PolicyResolveRequest extends RpcMessage {
     public static final String RESOLVE_MESSAGE = "policy_resolve";
 
     static public class Params {
+
         private String subject;
         private Uri policy_uri;
         private PolicyIdentity policy_ident;
@@ -35,30 +36,39 @@ public class PolicyResolveRequest extends RpcMessage {
         public String getSubject() {
             return subject;
         }
+
         public void setSubject(String subject) {
             this.subject = subject;
         }
+
         public Uri getPolicy_uri() {
             return policy_uri;
         }
+
         public void setPolicy_uri(Uri policy_uri) {
             this.policy_uri = policy_uri;
         }
+
         public PolicyIdentity getPolicy_ident() {
             return policy_ident;
         }
+
         public void setPolicy_ident(PolicyIdentity policy_ident) {
             this.policy_ident = policy_ident;
         }
+
         public String getData() {
             return data;
         }
+
         public void setData(String data) {
             this.data = data;
         }
+
         public int getPrr() {
             return prr;
         }
+
         public void setPrr(int prr) {
             this.prr = prr;
         }
@@ -120,6 +130,7 @@ public class PolicyResolveRequest extends RpcMessage {
 
     /**
      * Minimal check on validity of message
+     * 
      * @return true if message has passed validity check
      */
     @JsonIgnore