/* * Copyright (c) 2017 AT&T Intellectual Property. 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 javax.annotation.Nonnull; import org.opendaylight.protocol.concepts.KeyMapping; /** * Contains all required dependencies for instantiate a PCEPDispatcher. */ public interface PCEPDispatcherDependencies extends PCEPSessionNegotiatorFactoryDependencies { /** * Return the address to be bound with the server. * * @return ip address */ @Nonnull InetSocketAddress getAddress(); /** * RFC2385 key mapping. * * @return map containing Keys */ @Nonnull KeyMapping getKeys(); /** * PCEP Speaker Id mapping. * * @return map containing Keys */ @Nonnull SpeakerIdMapping getSpeakerIdMapping(); }