Add new revision for pcep types model
[bgpcep.git] / pcep / api / src / main / java / org / opendaylight / protocol / pcep / SpeakerIdMapping.java
1 /*
2  * Copyright (c) 2017 AT&T Intellectual Property. 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
9 package org.opendaylight.protocol.pcep;
10
11 import java.net.InetAddress;
12 import java.util.HashMap;
13
14 public final class SpeakerIdMapping extends HashMap<InetAddress, byte[]> {
15     private static final long serialVersionUID = 1L;
16
17     private SpeakerIdMapping() {
18         super();
19     }
20
21     public static SpeakerIdMapping getSpeakerIdMap() {
22         return new SpeakerIdMapping();
23     }
24 }