• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License").
5  * You may not use this file except in compliance with the License.
6  * A copy of the License is located at
7  *
8  *  http://aws.amazon.com/apache2.0
9  *
10  * or in the "license" file accompanying this file. This file is distributed
11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12  * express or implied. See the License for the specific language governing
13  * permissions and limitations under the License.
14  */
15 
16 package software.amazon.awssdk.codegen.model.service;
17 
18 public class Input {
19 
20     private String shape;
21 
22     private String documentation;
23 
24     private String locationName;
25 
26     private XmlNamespace xmlNamespace;
27 
getShape()28     public String getShape() {
29         return shape;
30     }
31 
setShape(String shape)32     public void setShape(String shape) {
33         this.shape = shape;
34     }
35 
getDocumentation()36     public String getDocumentation() {
37         return documentation;
38     }
39 
setDocumentation(String documentation)40     public void setDocumentation(String documentation) {
41         this.documentation = documentation;
42     }
43 
getLocationName()44     public String getLocationName() {
45         return locationName;
46     }
47 
setLocationName(String locationName)48     public void setLocationName(String locationName) {
49         this.locationName = locationName;
50     }
51 
getXmlNamespace()52     public XmlNamespace getXmlNamespace() {
53         return xmlNamespace;
54     }
55 
setXmlNamespace(XmlNamespace xmlNamespace)56     public void setXmlNamespace(XmlNamespace xmlNamespace) {
57         this.xmlNamespace = xmlNamespace;
58     }
59 }
60