Updated RESTCONF implementation
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / restconf / impl / MediaTypes.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.controller.sal.restconf.impl;
9
10 public class MediaTypes {
11     public static final String API = "application/vnd.yang.api";
12     public static final String DATASTORE = "application/vnd.yang.datastore";
13     public static final String DATA = "application/vnd.yang.data";
14     public static final String EVENT = "application/vnd.yang.event";
15     public static final String OPERATION = "application/vnd.yang.operation";
16     public static final String PATCH = "application/vnd.yang.patch";
17 }