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.config.customization; 17 18 public class MultipartCustomization { 19 private String multipartConfigurationClass; 20 private String multipartConfigMethodDoc; 21 private String multipartEnableMethodDoc; 22 private String contextParamEnabledKey; 23 private String contextParamConfigKey; 24 getMultipartConfigurationClass()25 public String getMultipartConfigurationClass() { 26 return multipartConfigurationClass; 27 } 28 setMultipartConfigurationClass(String multipartConfigurationClass)29 public void setMultipartConfigurationClass(String multipartConfigurationClass) { 30 this.multipartConfigurationClass = multipartConfigurationClass; 31 } 32 getMultipartConfigMethodDoc()33 public String getMultipartConfigMethodDoc() { 34 return multipartConfigMethodDoc; 35 } 36 setMultipartConfigMethodDoc(String multipartMethodDoc)37 public void setMultipartConfigMethodDoc(String multipartMethodDoc) { 38 this.multipartConfigMethodDoc = multipartMethodDoc; 39 } 40 getMultipartEnableMethodDoc()41 public String getMultipartEnableMethodDoc() { 42 return multipartEnableMethodDoc; 43 } 44 setMultipartEnableMethodDoc(String multipartEnableMethodDoc)45 public void setMultipartEnableMethodDoc(String multipartEnableMethodDoc) { 46 this.multipartEnableMethodDoc = multipartEnableMethodDoc; 47 } 48 getContextParamEnabledKey()49 public String getContextParamEnabledKey() { 50 return contextParamEnabledKey; 51 } 52 setContextParamEnabledKey(String contextParamEnabledKey)53 public void setContextParamEnabledKey(String contextParamEnabledKey) { 54 this.contextParamEnabledKey = contextParamEnabledKey; 55 } 56 getContextParamConfigKey()57 public String getContextParamConfigKey() { 58 return contextParamConfigKey; 59 } 60 setContextParamConfigKey(String contextParamConfigKey)61 public void setContextParamConfigKey(String contextParamConfigKey) { 62 this.contextParamConfigKey = contextParamConfigKey; 63 } 64 } 65