BUG-113: switch BGP to proper activators
[bgpcep.git] / bgp / parser-spi / src / main / java / org / opendaylight / protocol / bgp / parser / spi / AttributeRegistry.java
index ac479953528859188ec0e0fab8cff826b8a2ecaf..60305e06cc56825f9ed75ec27c220b40c71e87d0 100644 (file)
@@ -13,9 +13,6 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.mess
 import org.opendaylight.yangtools.yang.binding.DataObject;
 
 public interface AttributeRegistry {
-       public AutoCloseable registerAttributeParser(int attributeType, AttributeParser parser);
-       public AutoCloseable registerAttributeSerializer(Class<? extends DataObject> attributeClass, AttributeSerializer serializer);
-
        public PathAttributes parseAttributes(final byte[] bytes) throws BGPDocumentedException, BGPParsingException;
        public byte[] serializeAttribute(DataObject attribute);
 }