Added java code formatter and formatting of opflex java files
[groupbasedpolicy.git] / renderers / opflex / src / main / java / org / opendaylight / groupbasedpolicy / renderer / opflex / lib / messages / EndpointIdentity.java
index 331df7a81236004b54000adb06a4a34ec9af5e82..bf5ecaea761312d47fbece6505bfbe67824de4d7 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;
@@ -12,20 +12,24 @@ package org.opendaylight.groupbasedpolicy.renderer.opflex.lib.messages;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Uri;
 
 public class EndpointIdentity {
-       private String identifier;
-       private Uri context;
-
-       public String getIdentifier() {
-               return identifier;
-       }
-       public void setIdentifier(String identifier) {
-               this.identifier = identifier;
-       }
-       public Uri getContext() {
-               return context;
-       }
-       public void setContext(Uri context) {
-               this.context = context;
-       }
+
+    private String identifier;
+    private Uri context;
+
+    public String getIdentifier() {
+        return identifier;
+    }
+
+    public void setIdentifier(String identifier) {
+        this.identifier = identifier;
+    }
+
+    public Uri getContext() {
+        return context;
+    }
+
+    public void setContext(Uri context) {
+        this.context = context;
+    }
 
 }