a455e3e9d1d2c8954409d7c1db918766a5c46e6a
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / spi / AbstractImportPolicy.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.protocol.bgp.rib.impl.spi;
9
10 import javax.annotation.Nullable;
11 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
12
13 /**
14  * Defines the internal hooks invoked when a new route appears.
15  */
16 public abstract class AbstractImportPolicy {
17     /**
18      * Transform incoming attributes according to policy.
19      *
20      * @param attributes received attributes
21      * @return Filtered attributes, or null if the advertisement should be ignored.
22      */
23     @Nullable public abstract ContainerNode effectiveAttributes(@Nullable ContainerNode attributes);
24 }