Mercurial > repos > ganjoo > webservice_toolsuite
comparison WebServiceToolWorkflow/lib/SAWADLParser/src/javax/wadls/Param.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 : Param.java . | |
| 6 * Created on : Nov 22, 2009 at 4:03:57 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 javax.wadls; | |
| 39 | |
| 40 import java.net.URI; | |
| 41 import java.util.ArrayList; | |
| 42 import java.util.List; | |
| 43 | |
| 44 /** | |
| 45 * | |
| 46 * @author Srikalyan Swayampakula. | |
| 47 */ | |
| 48 public interface Param extends java.io.Serializable | |
| 49 { | |
| 50 | |
| 51 | |
| 52 | |
| 53 public String getModelreference(); | |
| 54 | |
| 55 public void setModelreference(String modelreference); | |
| 56 | |
| 57 public String getLiftingschemamapping(); | |
| 58 | |
| 59 public void setLiftingschemamapping(String liftingschemamapping) ; | |
| 60 public String getLoweringschemamapping() ; | |
| 61 | |
| 62 public void setLoweringschemamapping(String loweringschemamapping) ; | |
| 63 | |
| 64 public List<String> getOptionvalue() ; | |
| 65 | |
| 66 public void setOptionvalue(List<String> optionvalue) ; | |
| 67 | |
| 68 public String getDefault1(); | |
| 69 public void setDefault1(String default1); | |
| 70 | |
| 71 | |
| 72 | |
| 73 public String getFixed(); | |
| 74 | |
| 75 public void setFixed(String fixed); | |
| 76 | |
| 77 | |
| 78 public String getId(); | |
| 79 public void setId(String id); | |
| 80 | |
| 81 public String getName(); | |
| 82 | |
| 83 public void setName(String name); | |
| 84 | |
| 85 public String getPath(); | |
| 86 public void setPath(String path); | |
| 87 public boolean isRepeation(); | |
| 88 public void setRepeation(boolean repeation); | |
| 89 public String getRequired(); | |
| 90 | |
| 91 public void setRequired(String required); | |
| 92 public String getStyle(); | |
| 93 | |
| 94 public void setStyle(String style); | |
| 95 public String getType(); | |
| 96 | |
| 97 public void setType(String type); | |
| 98 } |
