2e94d5841ea4d206c79c3302fa953d2f11b28ea2
[bgpcep.git] / framework / src / main / java / org / opendaylight / protocol / framework / SessionProposal.java
1 /*
2  * Copyright (c) 2013 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.framework;
9
10 /**
11  * Interface that provides the initial acceptable session characteristics
12  * with which the session should be started. This interface should be
13  * implemented by a protocol specific abstract class, that is extended by
14  * a final class that implements the methods.
15  */
16 public interface SessionProposal {
17
18         /**
19          * Returns specific Session Preferences object for this IP address.
20          * @return SessionPreferences DTO with acceptable session characteristics
21          */
22         public SessionPreferences getProposal();
23 }