• 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.rules.endpoints;
17 
18 import com.fasterxml.jackson.core.TreeNode;
19 import java.util.List;
20 import java.util.Map;
21 
22 public class EndpointTestModel {
23     private String documentation;
24     private Map<String, TreeNode> params;
25     private List<OperationInput> operationInputs;
26     private ExpectModel expect;
27 
getDocumentation()28     public String getDocumentation() {
29         return documentation;
30     }
31 
setDocumentation(String documentation)32     public void setDocumentation(String documentation) {
33         this.documentation = documentation;
34     }
35 
getParams()36     public Map<String, TreeNode> getParams() {
37         return params;
38     }
39 
setParams(Map<String, TreeNode> params)40     public void setParams(Map<String, TreeNode> params) {
41         this.params = params;
42     }
43 
getOperationInputs()44     public List<OperationInput> getOperationInputs() {
45         return operationInputs;
46     }
47 
setOperationInputs(List<OperationInput> operationInputs)48     public void setOperationInputs(List<OperationInput> operationInputs) {
49         this.operationInputs = operationInputs;
50     }
51 
getExpect()52     public ExpectModel getExpect() {
53         return expect;
54     }
55 
setExpect(ExpectModel expect)56     public void setExpect(ExpectModel expect) {
57         this.expect = expect;
58     }
59 }
60