7e07eb373b509ad11234d562185867d107c36213
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / HandlerRegistry.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.pcep.spi;
9
10 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Message;
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Tlv;
12
13 public interface HandlerRegistry {
14         public AutoCloseable registerMessageHandler(Class<? extends Message> msgClass, int messageType, MessageHandler handler);
15         public MessageHandler getMessageHandler(int messageType);
16         public MessageHandler getMessageHandler(Message message);
17
18         public AutoCloseable registerObjectHandler(Class<? extends Object> objClass, int objectClass, int objectType, ObjectHandler handler);
19         public ObjectHandler getObjectHandler(int objectClass, int objectType);
20         public ObjectHandler getObjectHandler(Object object);
21
22         public AutoCloseable registerTlvHandler(Class<? extends Tlv> tlvClass, int tlvType, TlvHandler handler);
23         public TlvHandler getTlvHandler(int tlvType);
24         public TlvHandler getTlvHandler(Tlv tlv);
25 }