Merge "Increase timeout for waiting for broker service in sal-binding-it."
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / rest / api / Draft02.java
1 /*
2  * Copyright (c) 2014 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 Draft02 {
11     public static class MediaTypes {
12         public static final String API = "application/yang.api";
13         public static final String DATASTORE = "application/yang.datastore";
14         public static final String DATA = "application/yang.data";
15         public static final String OPERATION = "application/yang.operation";
16         public static final String PATCH = "application/yang.patch";
17         public static final String PATCH_STATUS = "application/yang.patch-status";
18         public static final String STREAM = "application/yang.stream";
19     }
20     
21     public static class Paths {
22         
23     }
24 }