org.opendaylight.protocol.pcep.PCEPPeerProposal Maven / Gradle / Ivy
/*
* Copyright (c) 2015 Cisco Systems, Inc. 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.protocol.pcep;
import java.net.InetSocketAddress;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.open.object.open.TlvsBuilder;
/**
* Proposal from peer for establishment of PCEP session.
*/
@NonNullByDefault
public interface PCEPPeerProposal {
/**
* Sets specific TLVs into incoming builder.
*
* @param address pcep speaker address
* @param openBuilder to assign specific proposal
*/
void setPeerSpecificProposal(InetSocketAddress address, TlvsBuilder openBuilder);
}