• 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 
21 public class ConditionModel {
22     private String fn;
23     private List<TreeNode> argv;
24     private String assign;
25 
getFn()26     public String getFn() {
27         return fn;
28     }
29 
setFn(String fn)30     public void setFn(String fn) {
31         this.fn = fn;
32     }
33 
getAssign()34     public String getAssign() {
35         return assign;
36     }
37 
setAssign(String assign)38     public void setAssign(String assign) {
39         this.assign = assign;
40     }
41 
getArgv()42     public List<TreeNode> getArgv() {
43         return argv;
44     }
45 
setArgv(List<TreeNode> argv)46     public void setArgv(List<TreeNode> argv) {
47         this.argv = argv;
48     }
49 }
50