/* * Copyright 2013-2014 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.cloud.aws.core.env.ec2; import org.springframework.beans.factory.annotation.Value; /** * @author Agim Emruli */ public class SimpleConfigurationBean { @Value("#{environment.key1}") private String value1; @Value("#{environment.key2}") private String value2; @Value("${key3}") private String value3; @Value("${instance-id}") private String value4; public String getValue1() { return this.value1; } public void setValue1(String value1) { this.value1 = value1; } public String getValue2() { return this.value2; } public void setValue2(String value2) { this.value2 = value2; } public String getValue3() { return this.value3; } public void setValue3(String value3) { this.value3 = value3; } public String getValue4() { return this.value4; } public void setValue4(String value4) { this.value4 = value4; } }