Added copyright and updated appropriate log levels
[vpnservice.git] / mdsalutil / mdsalutil-api / src / main / java / org / opendaylight / vpnservice / mdsalutil / AbstractSwitchEntity.java
index 8ec8a99af8de5a99958827f0ed3691e39110daf8..b833180761d3e6f64ea7b698ea78fce57df66da6 100644 (file)
@@ -1,31 +1,29 @@
 /*
- * Copyright (c) 2013 Ericsson AB.  All rights reserved.
+ * Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
  *
  * 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
- *
  */
-
 package org.opendaylight.vpnservice.mdsalutil;
 
 public class AbstractSwitchEntity {
     private static final long serialVersionUID = 1L;
 
     private long m_lDpnId;
-    
+
 
     public AbstractSwitchEntity(long lDpnId) {
         m_lDpnId = lDpnId;
-      
+
     }
-    
+
     @Override
     public String toString() {
         return "AbstractSwitchEntity [m_lDpnId=" + m_lDpnId + " ]";
     }
 
-    
+
     public long getDpnId() {
         return m_lDpnId;
     }