/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.sal.rest.api; public class Draft01 { public static class MediaTypes { public static final String API = "application/vnd.yang.api"; public static final String DATASTORE = "application/vnd.yang.datastore"; public static final String DATA = "application/vnd.yang.data"; public static final String EVENT = "application/vnd.yang.event"; public static final String OPERATION = "application/vnd.yang.operation"; public static final String PATCH = "application/vnd.yang.patch"; } }