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 EndpointModel { 23 private TreeNode url; 24 private Map<String, List<TreeNode>> headers; 25 private Map<String, TreeNode> properties; 26 getUrl()27 public TreeNode getUrl() { 28 return url; 29 } 30 setUrl(TreeNode url)31 public void setUrl(TreeNode url) { 32 this.url = url; 33 } 34 getHeaders()35 public Map<String, List<TreeNode>> getHeaders() { 36 return headers; 37 } 38 setHeaders(Map<String, List<TreeNode>> headers)39 public void setHeaders(Map<String, List<TreeNode>> headers) { 40 this.headers = headers; 41 } 42 getProperties()43 public Map<String, TreeNode> getProperties() { 44 return properties; 45 } 46 setProperties(Map<String, TreeNode> properties)47 public void setProperties(Map<String, TreeNode> properties) { 48 this.properties = properties; 49 } 50 } 51