Slice front-end request messages
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / test / java / org / opendaylight / controller / cluster / messaging / StringIdentifier.java
1 /*
2  * Copyright (c) 2017 Inocybe Technologies 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.controller.cluster.messaging;
9
10 import org.opendaylight.yangtools.util.AbstractStringIdentifier;
11
12 /**
13  * Identifier that stores a string.
14  *
15  * @author Thomas Pantelis
16  */
17 public class StringIdentifier extends AbstractStringIdentifier<StringIdentifier> {
18     private static final long serialVersionUID = 1L;
19
20     public StringIdentifier(String string) {
21         super(string);
22     }
23 }