Merge "Add javadoc generation for yang modules in netconf subsystem"
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / rest / api / Draft01.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.rest.api;
9
10 public class Draft01 {
11     public static class MediaTypes {
12         public static final String API = "application/vnd.yang.api";
13         public static final String DATASTORE = "application/vnd.yang.datastore";
14         public static final String DATA = "application/vnd.yang.data";
15         public static final String EVENT = "application/vnd.yang.event";
16         public static final String OPERATION = "application/vnd.yang.operation";
17         public static final String PATCH = "application/vnd.yang.patch";
18     }
19 }