Fix most bgp-parser-spi checkstyle violations
[bgpcep.git] / bgp / parser-spi / src / main / java / org / opendaylight / protocol / bgp / parser / spi / extended / community / ExtendedCommunityRegistry.java
index 299c126cde94c352af2dbde22ecc8fcef3f85e90..5de2ecffb726f9fa0bea29930a130f0d3aa19111 100644 (file)
@@ -5,7 +5,6 @@
  * 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.protocol.bgp.parser.spi.extended.community;
 
 import io.netty.buffer.ByteBuf;
@@ -15,25 +14,22 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.mess
 
 /**
  * The Extended Communities registry.
- *
  */
 public interface ExtendedCommunityRegistry {
-
     /**
      * Parses the Extended Community.
+     *
      * @param buffer ByteBuf
      * @return Decoded ExtendedCommunity or null if the parser for such Extended Community type/sub-type is not present.
-     * @throws BGPDocumentedException
-     * @throws BGPParsingException
      */
     ExtendedCommunities parseExtendedCommunity(ByteBuf buffer) throws BGPDocumentedException, BGPParsingException;
 
     /**
      * Serializes the Extended Community.
+     *
      * @param extendedCommunity ExtendedCommunity to be encoded.
-     * @param byteAggregator ByteBuf, where the Extended Community is serialized,
-     *  if a serialized is not present for such Extended Community type, no bytes are written into output buffer.
+     * @param byteAggregator ByteBuf, where the Extended Community is serialized, if a serialized is not present for
+     *                       such Extended Community type, no bytes are written into output buffer.
      */
     void serializeExtendedCommunity(ExtendedCommunities extendedCommunity, ByteBuf byteAggregator);
-
 }