BUG 5031:
[bgpcep.git] / bgp / linkstate / src / main / java / org / opendaylight / protocol / bgp / linkstate / impl / attribute / TeLspAttributesParser.java
similarity index 97%
rename from bgp/linkstate/src/main/java/org/opendaylight/protocol/bgp/linkstate/attribute/TeLspAttributesParser.java
rename to bgp/linkstate/src/main/java/org/opendaylight/protocol/bgp/linkstate/impl/attribute/TeLspAttributesParser.java
index 4a07446f0cb853133ea814bd6103295802c1ff03..1fce348175098e9b4c1fd7f4f3433e7b7be22a7e 100644 (file)
@@ -6,7 +6,7 @@
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 
-package org.opendaylight.protocol.bgp.linkstate.attribute;
+package org.opendaylight.protocol.bgp.linkstate.impl.attribute;
 
 import io.netty.buffer.ByteBuf;
 import io.netty.buffer.Unpooled;
@@ -53,14 +53,14 @@ import org.slf4j.LoggerFactory;
 final class TeLspAttributesParser {
 
     private static final Logger LOG = LoggerFactory.getLogger(TeLspAttributesParser.class);
-    // TODO: TBD BY IANA
+    //TBD BY IANA
     private static final int MAGIC_NUMBER = 99;
 
     private TeLspAttributesParser() {
         throw new UnsupportedOperationException();
     }
 
-    public static LinkStateAttribute parseTeLspAttributes(final RSVPTeObjectRegistry registry, final ByteBuf attributes) throws BGPParsingException {
+    static LinkStateAttribute parseTeLspAttributes(final RSVPTeObjectRegistry registry, final ByteBuf attributes) throws BGPParsingException {
 
         final TeLspAttributesBuilder builder = new TeLspAttributesBuilder();
         LOG.trace("Initiated parsing TE LSP Objects.");
@@ -123,7 +123,7 @@ final class TeLspAttributesParser {
     }
 
 
-    public static void serializeLspAttributes(final RSVPTeObjectRegistry registry, final TeLspAttributesCase linkState, final ByteBuf output) {
+    static void serializeLspAttributes(final RSVPTeObjectRegistry registry, final TeLspAttributesCase linkState, final ByteBuf output) {
         LOG.trace("Started serializing TE LSP Objects");
         final ByteBuf byteBuf = Unpooled.buffer();