Mercurial > repos > ganjoo > webservice_toolsuite
comparison WebServiceToolWorkflow/ParserForWADL/src/lsdis/WADLConstant.java @ 0:e7482c82796e default tip
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
| author | ganjoo |
|---|---|
| date | Tue, 07 Jun 2011 17:34:26 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:e7482c82796e |
|---|---|
| 1 /* | |
| 2 * Copyright (c) 2009 Srikalyan Swayampakula.. All rights reserved. | |
| 3 * | |
| 4 * Author : Srikalyan Swayampakula. . | |
| 5 * Name of the File : WADLConstant.java . | |
| 6 * Created on : Nov 22, 2009 at 3:22:02 PM . | |
| 7 * | |
| 8 * Redistribution and use in source and binary forms, with or without | |
| 9 * modification, are permitted provided that the following conditions | |
| 10 * are met: | |
| 11 * | |
| 12 * 1. Redistributions of source code must retain the above | |
| 13 * copyright notice, this list of conditions and the following | |
| 14 * disclaimer. | |
| 15 * 2. Redistributions in binary form must reproduce the above | |
| 16 * copyright notice, this list of conditions and the following | |
| 17 * disclaimer in the documentation and/or other materials | |
| 18 * provided with the distribution. | |
| 19 * 3. Neither the name of the University of Georgia nor the names | |
| 20 * of its contributors may be used to endorse or promote | |
| 21 * products derived from this software without specific prior | |
| 22 * written permission. | |
| 23 * | |
| 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND | |
| 25 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, | |
| 26 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
| 27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
| 28 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR | |
| 29 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
| 30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | |
| 31 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
| 32 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | |
| 35 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, | |
| 36 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 37 */ | |
| 38 package lsdis; | |
| 39 | |
| 40 /** | |
| 41 * | |
| 42 * @author Srikalyan Swayampakula. | |
| 43 */ | |
| 44 public class WADLConstant | |
| 45 { | |
| 46 | |
| 47 public static final String XSI = "http://www.w3.org/2001/XMLSchema-instance"; | |
| 48 public static final String XSD = "http://www.w3.org/2001/XMLSchema"; | |
| 49 public static final String APPLICATION = "application"; | |
| 50 public static final String DOC = "doc"; | |
| 51 public static final String DOC_TITLE = "title"; | |
| 52 public static final String DOC_LANG="lang"; | |
| 53 public static final String GRAMMAR = "grammars"; | |
| 54 public static final String INCLUDE = "include"; | |
| 55 public static final String INCLUDE_HREF="href"; | |
| 56 public static final String RESOURCES = "resources"; | |
| 57 public static final String RESOURCES_BASE = "base"; | |
| 58 public static final String RESOURCE = "resource"; | |
| 59 public static final String RESOURCE_ID = "id"; | |
| 60 public static final String RESOURCE_TYPE = "type"; | |
| 61 public static final String RESOURCE_QUERY_TYPE = "queryType"; | |
| 62 public static final String RESOURCE_PATH = "path"; | |
| 63 public static final String METHOD = "method"; | |
| 64 public static final String METHOD_ID = "id"; | |
| 65 public static final String METHOD_NAME = "name"; | |
| 66 public static final String METHOD_HREF = "href"; | |
| 67 public static final String REQUEST = "request"; | |
| 68 public static final String RESPONSE = "response"; | |
| 69 public static final String RESPONSE_STATUS = "status"; | |
| 70 public static final String REPRESENTATION = "representation"; | |
| 71 public static final String REPRESENTATION_ID="id"; | |
| 72 public static final String REPRESENTATION_ELEMENT="element"; | |
| 73 public static final String REPRESENTATION_MEDIA_TYPE="mediaType"; | |
| 74 public static final String REPRESENTATION_HREF="href"; | |
| 75 public static final String REPRESENTATION_PROFILE="profile"; | |
| 76 public static final String PARAM="param"; | |
| 77 public static final String PARAM_HREF="href"; | |
| 78 public static final String PARAM_NAME="name"; | |
| 79 public static final String PARAM_STYLE="style"; | |
| 80 public static final String PARAM_ID="id"; | |
| 81 public static final String PARAM_TYPE="type"; | |
| 82 public static final String PARAM_DEFAULT="default"; | |
| 83 public static final String PARAM_REQUIRED="required"; | |
| 84 public static final String PARAM_REPEATING="repeating"; | |
| 85 public static final String PARAM_FIXED="fixed"; | |
| 86 public static final String PARAM_PATH="path"; | |
| 87 public static final String OPTION="option"; | |
| 88 public static final String OPTION_VALUE="value"; | |
| 89 public static final String OPTION_MEDIA_TYPE="mediaType"; | |
| 90 public static final String LINK="link"; | |
| 91 public static final String LINK_RESOURCE_TYPE="resource_type"; | |
| 92 public static final String LINK_REL="rel"; | |
| 93 public static final String LINK_REV="rev"; | |
| 94 | |
| 95 } |
