Bug 5526 - Implementations of services
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / restconf / utils / mapping / RestconfMappingStreamConstants.java
1 /*
2  * Copyright (c) 2016 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.restconf.utils.mapping;
9
10 /**
11  * Util class for mapping entry stream
12  *
13  */
14 public final class RestconfMappingStreamConstants {
15
16     public static final String DESCRIPTION = "DESCRIPTION_PLACEHOLDER";
17     public static final Boolean REPLAY_SUPPORT = Boolean.valueOf(true);
18     public static final String REPLAY_LOG = "";
19     public static final String EVENTS = "";
20
21     private RestconfMappingStreamConstants() {
22         throw new UnsupportedOperationException("Util class");
23     }
24 }