diff --git a/src/main/java/org/springframework/platform/cloudfoundry/broker/FreeServiceDefinitionFactory.java b/src/main/java/org/springframework/cloud/cloudfoundry/broker/FreeServiceDefinitionFactory.java similarity index 97% rename from src/main/java/org/springframework/platform/cloudfoundry/broker/FreeServiceDefinitionFactory.java rename to src/main/java/org/springframework/cloud/cloudfoundry/broker/FreeServiceDefinitionFactory.java index 3dceb73..58f500a 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/broker/FreeServiceDefinitionFactory.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/broker/FreeServiceDefinitionFactory.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.broker; +package org.springframework.cloud.cloudfoundry.broker; import java.io.UnsupportedEncodingException; import java.util.ArrayList; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/broker/ServiceInstanceBindingRepository.java b/src/main/java/org/springframework/cloud/cloudfoundry/broker/ServiceInstanceBindingRepository.java similarity index 94% rename from src/main/java/org/springframework/platform/cloudfoundry/broker/ServiceInstanceBindingRepository.java rename to src/main/java/org/springframework/cloud/cloudfoundry/broker/ServiceInstanceBindingRepository.java index 50c60d3..c276327 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/broker/ServiceInstanceBindingRepository.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/broker/ServiceInstanceBindingRepository.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.broker; +package org.springframework.cloud.cloudfoundry.broker; import org.cloudfoundry.community.servicebroker.model.ServiceInstanceBinding; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/broker/ServiceInstanceRepository.java b/src/main/java/org/springframework/cloud/cloudfoundry/broker/ServiceInstanceRepository.java similarity index 94% rename from src/main/java/org/springframework/platform/cloudfoundry/broker/ServiceInstanceRepository.java rename to src/main/java/org/springframework/cloud/cloudfoundry/broker/ServiceInstanceRepository.java index c30ffca..cf1b9e1 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/broker/ServiceInstanceRepository.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/broker/ServiceInstanceRepository.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.broker; +package org.springframework.cloud.cloudfoundry.broker; import java.util.List; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/broker/configuration/CatalogLeaseManager.java b/src/main/java/org/springframework/cloud/cloudfoundry/broker/configuration/CatalogLeaseManager.java similarity index 95% rename from src/main/java/org/springframework/platform/cloudfoundry/broker/configuration/CatalogLeaseManager.java rename to src/main/java/org/springframework/cloud/cloudfoundry/broker/configuration/CatalogLeaseManager.java index a99ca41..0ff3d29 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/broker/configuration/CatalogLeaseManager.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/broker/configuration/CatalogLeaseManager.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.broker.configuration; +package org.springframework.cloud.cloudfoundry.broker.configuration; import java.util.ArrayList; import java.util.Collection; @@ -25,7 +25,7 @@ import org.cloudfoundry.community.servicebroker.model.Catalog; import org.cloudfoundry.community.servicebroker.model.ServiceDefinition; import org.cloudfoundry.community.servicebroker.service.BeanCatalogService; import org.cloudfoundry.community.servicebroker.service.CatalogService; -import org.springframework.platform.cloudfoundry.broker.FreeServiceDefinitionFactory; +import org.springframework.cloud.cloudfoundry.broker.FreeServiceDefinitionFactory; import com.netflix.appinfo.InstanceInfo; import com.netflix.appinfo.InstanceInfo.ActionType; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/broker/configuration/ServiceBrokerAutoConfiguration.java b/src/main/java/org/springframework/cloud/cloudfoundry/broker/configuration/ServiceBrokerAutoConfiguration.java similarity index 89% rename from src/main/java/org/springframework/platform/cloudfoundry/broker/configuration/ServiceBrokerAutoConfiguration.java rename to src/main/java/org/springframework/cloud/cloudfoundry/broker/configuration/ServiceBrokerAutoConfiguration.java index 22dde4d..e03b402 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/broker/configuration/ServiceBrokerAutoConfiguration.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/broker/configuration/ServiceBrokerAutoConfiguration.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.broker.configuration; +package org.springframework.cloud.cloudfoundry.broker.configuration; import java.lang.reflect.Field; import java.lang.reflect.Modifier; @@ -41,15 +41,15 @@ import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.FilterType; -import org.springframework.platform.cloudfoundry.broker.FreeServiceDefinitionFactory; -import org.springframework.platform.cloudfoundry.broker.ServiceInstanceBindingRepository; -import org.springframework.platform.cloudfoundry.broker.ServiceInstanceRepository; -import org.springframework.platform.cloudfoundry.broker.simple.SimpleServiceInstanceBindingRepository; -import org.springframework.platform.cloudfoundry.broker.simple.SimpleServiceInstanceBindingService; -import org.springframework.platform.cloudfoundry.broker.simple.SimpleServiceInstanceRepository; -import org.springframework.platform.cloudfoundry.broker.simple.SimpleServiceInstanceService; -import org.springframework.platform.netflix.eureka.advice.PiggybackMethodInterceptor; -import org.springframework.platform.netflix.eureka.event.EurekaRegistryAvailableEvent; +import org.springframework.cloud.cloudfoundry.broker.FreeServiceDefinitionFactory; +import org.springframework.cloud.cloudfoundry.broker.ServiceInstanceBindingRepository; +import org.springframework.cloud.cloudfoundry.broker.ServiceInstanceRepository; +import org.springframework.cloud.cloudfoundry.broker.simple.SimpleServiceInstanceBindingRepository; +import org.springframework.cloud.cloudfoundry.broker.simple.SimpleServiceInstanceBindingService; +import org.springframework.cloud.cloudfoundry.broker.simple.SimpleServiceInstanceRepository; +import org.springframework.cloud.cloudfoundry.broker.simple.SimpleServiceInstanceService; +import org.springframework.cloud.netflix.eureka.advice.PiggybackMethodInterceptor; +import org.springframework.cloud.netflix.eureka.event.EurekaRegistryAvailableEvent; import org.springframework.stereotype.Component; import org.springframework.util.ReflectionUtils; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceBindingRepository.java b/src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceBindingRepository.java similarity index 89% rename from src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceBindingRepository.java rename to src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceBindingRepository.java index f1da5e8..1e98fb5 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceBindingRepository.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceBindingRepository.java @@ -13,10 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.broker.simple; +package org.springframework.cloud.cloudfoundry.broker.simple; import org.cloudfoundry.community.servicebroker.model.ServiceInstanceBinding; -import org.springframework.platform.cloudfoundry.broker.ServiceInstanceBindingRepository; +import org.springframework.cloud.cloudfoundry.broker.ServiceInstanceBindingRepository; /** * @author Dave Syer diff --git a/src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceBindingService.java b/src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceBindingService.java similarity index 96% rename from src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceBindingService.java rename to src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceBindingService.java index 8e1fd0e..e0f6fe0 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceBindingService.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceBindingService.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.broker.simple; +package org.springframework.cloud.cloudfoundry.broker.simple; import java.util.HashMap; import java.util.Map; @@ -27,7 +27,7 @@ import org.cloudfoundry.community.servicebroker.service.CatalogService; import org.cloudfoundry.community.servicebroker.service.ServiceInstanceBindingService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; -import org.springframework.platform.cloudfoundry.broker.ServiceInstanceBindingRepository; +import org.springframework.cloud.cloudfoundry.broker.ServiceInstanceBindingRepository; import org.springframework.stereotype.Service; /** diff --git a/src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceRepository.java b/src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceRepository.java similarity index 90% rename from src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceRepository.java rename to src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceRepository.java index 617439c..07f61b4 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceRepository.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceRepository.java @@ -13,13 +13,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.broker.simple; +package org.springframework.cloud.cloudfoundry.broker.simple; import java.util.ArrayList; import java.util.List; import org.cloudfoundry.community.servicebroker.model.ServiceInstance; -import org.springframework.platform.cloudfoundry.broker.ServiceInstanceRepository; +import org.springframework.cloud.cloudfoundry.broker.ServiceInstanceRepository; /** * @author Dave Syer diff --git a/src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceService.java b/src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceService.java similarity index 94% rename from src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceService.java rename to src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceService.java index 8dcf51c..2bf71f6 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/broker/simple/SimpleServiceInstanceService.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/broker/simple/SimpleServiceInstanceService.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.broker.simple; +package org.springframework.cloud.cloudfoundry.broker.simple; import java.util.List; @@ -23,7 +23,7 @@ import org.cloudfoundry.community.servicebroker.model.ServiceDefinition; import org.cloudfoundry.community.servicebroker.model.ServiceInstance; import org.cloudfoundry.community.servicebroker.service.ServiceInstanceService; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.platform.cloudfoundry.broker.ServiceInstanceRepository; +import org.springframework.cloud.cloudfoundry.broker.ServiceInstanceRepository; import org.springframework.stereotype.Service; @Service diff --git a/src/main/java/org/springframework/platform/cloudfoundry/proxy/CloudfoundryProxyConfiguration.java b/src/main/java/org/springframework/cloud/cloudfoundry/proxy/CloudfoundryProxyConfiguration.java similarity index 96% rename from src/main/java/org/springframework/platform/cloudfoundry/proxy/CloudfoundryProxyConfiguration.java rename to src/main/java/org/springframework/cloud/cloudfoundry/proxy/CloudfoundryProxyConfiguration.java index 7bfebba..469ef58 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/proxy/CloudfoundryProxyConfiguration.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/proxy/CloudfoundryProxyConfiguration.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.proxy; +package org.springframework.cloud.cloudfoundry.proxy; import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/proxy/CloudfoundryTokenFilter.java b/src/main/java/org/springframework/cloud/cloudfoundry/proxy/CloudfoundryTokenFilter.java similarity index 96% rename from src/main/java/org/springframework/platform/cloudfoundry/proxy/CloudfoundryTokenFilter.java rename to src/main/java/org/springframework/cloud/cloudfoundry/proxy/CloudfoundryTokenFilter.java index 0a9dd18..dd3b4f9 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/proxy/CloudfoundryTokenFilter.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/proxy/CloudfoundryTokenFilter.java @@ -1,4 +1,4 @@ -package org.springframework.platform.cloudfoundry.proxy; +package org.springframework.cloud.cloudfoundry.proxy; import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContextHolder; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/resource/CloudfoundryResourceConfiguration.java b/src/main/java/org/springframework/cloud/cloudfoundry/resource/CloudfoundryResourceConfiguration.java similarity index 98% rename from src/main/java/org/springframework/platform/cloudfoundry/resource/CloudfoundryResourceConfiguration.java rename to src/main/java/org/springframework/cloud/cloudfoundry/resource/CloudfoundryResourceConfiguration.java index d6264a5..0a33300 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/resource/CloudfoundryResourceConfiguration.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/resource/CloudfoundryResourceConfiguration.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.resource; +package org.springframework.cloud.cloudfoundry.resource; import org.springframework.beans.BeansException; import org.springframework.beans.factory.annotation.Autowired; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/resource/CloudfoundryResourceProperties.java b/src/main/java/org/springframework/cloud/cloudfoundry/resource/CloudfoundryResourceProperties.java similarity index 97% rename from src/main/java/org/springframework/platform/cloudfoundry/resource/CloudfoundryResourceProperties.java rename to src/main/java/org/springframework/cloud/cloudfoundry/resource/CloudfoundryResourceProperties.java index c866023..a9047b4 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/resource/CloudfoundryResourceProperties.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/resource/CloudfoundryResourceProperties.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.resource; +package org.springframework.cloud.cloudfoundry.resource; import lombok.Data; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/resource/EnableCloudfoundryResource.java b/src/main/java/org/springframework/cloud/cloudfoundry/resource/EnableCloudfoundryResource.java similarity index 94% rename from src/main/java/org/springframework/platform/cloudfoundry/resource/EnableCloudfoundryResource.java rename to src/main/java/org/springframework/cloud/cloudfoundry/resource/EnableCloudfoundryResource.java index e1c85a6..21b0e55 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/resource/EnableCloudfoundryResource.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/resource/EnableCloudfoundryResource.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.resource; +package org.springframework.cloud.cloudfoundry.resource; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoConfiguration.java b/src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoConfiguration.java similarity index 99% rename from src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoConfiguration.java rename to src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoConfiguration.java index b8d89a1..b1ea730 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoConfiguration.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoConfiguration.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.sso; +package org.springframework.cloud.cloudfoundry.sso; import java.io.IOException; import java.util.Collections; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoConfigurer.java b/src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoConfigurer.java similarity index 93% rename from src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoConfigurer.java rename to src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoConfigurer.java index 7fca0c1..4888b4a 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoConfigurer.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoConfigurer.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.sso; +package org.springframework.cloud.cloudfoundry.sso; import org.springframework.security.config.annotation.web.builders.HttpSecurity; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoConfigurerAdapter.java b/src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoConfigurerAdapter.java similarity index 94% rename from src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoConfigurerAdapter.java rename to src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoConfigurerAdapter.java index ee19e75..65f2241 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoConfigurerAdapter.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoConfigurerAdapter.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.sso; +package org.springframework.cloud.cloudfoundry.sso; import org.springframework.security.config.annotation.web.builders.HttpSecurity; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoProperties.java b/src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoProperties.java similarity index 98% rename from src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoProperties.java rename to src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoProperties.java index 3badbd8..7d4ff66 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/sso/CloudfoundrySsoProperties.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/sso/CloudfoundrySsoProperties.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.sso; +package org.springframework.cloud.cloudfoundry.sso; import lombok.Data; diff --git a/src/main/java/org/springframework/platform/cloudfoundry/sso/EnableCloudfoundrySso.java b/src/main/java/org/springframework/cloud/cloudfoundry/sso/EnableCloudfoundrySso.java similarity index 95% rename from src/main/java/org/springframework/platform/cloudfoundry/sso/EnableCloudfoundrySso.java rename to src/main/java/org/springframework/cloud/cloudfoundry/sso/EnableCloudfoundrySso.java index aaed424..a6c7582 100644 --- a/src/main/java/org/springframework/platform/cloudfoundry/sso/EnableCloudfoundrySso.java +++ b/src/main/java/org/springframework/cloud/cloudfoundry/sso/EnableCloudfoundrySso.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.sso; +package org.springframework.cloud.cloudfoundry.sso; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; diff --git a/src/main/resources/META-INF/spring.factories b/src/main/resources/META-INF/spring.factories index 23aff23..dae2c26 100644 --- a/src/main/resources/META-INF/spring.factories +++ b/src/main/resources/META-INF/spring.factories @@ -1,3 +1,3 @@ org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ -org.springframework.platform.cloudfoundry.broker.configuration.ServiceBrokerAutoConfiguration,\ -org.springframework.platform.cloudfoundry.proxy.CloudfoundryProxyConfiguration \ No newline at end of file +org.springframework.cloud.cloudfoundry.broker.configuration.ServiceBrokerAutoConfiguration,\ +org.springframework.cloud.cloudfoundry.proxy.CloudfoundryProxyConfiguration \ No newline at end of file diff --git a/src/test/java/org/springframework/platform/cloudfoundry/broker/sample/Application.java b/src/test/java/org/springframework/cloud/cloudfoundry/broker/sample/Application.java similarity index 87% rename from src/test/java/org/springframework/platform/cloudfoundry/broker/sample/Application.java rename to src/test/java/org/springframework/cloud/cloudfoundry/broker/sample/Application.java index 4a8eb7d..c251a77 100644 --- a/src/test/java/org/springframework/platform/cloudfoundry/broker/sample/Application.java +++ b/src/test/java/org/springframework/cloud/cloudfoundry/broker/sample/Application.java @@ -13,12 +13,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.broker.sample; +package org.springframework.cloud.cloudfoundry.broker.sample; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.context.annotation.Configuration; -import org.springframework.platform.cloudfoundry.sso.EnableCloudfoundrySso; +import org.springframework.cloud.cloudfoundry.sso.EnableCloudfoundrySso; @Configuration @EnableAutoConfiguration diff --git a/src/test/java/org/springframework/platform/cloudfoundry/broker/sample/ApplicationTests.java b/src/test/java/org/springframework/cloud/cloudfoundry/broker/sample/ApplicationTests.java similarity index 96% rename from src/test/java/org/springframework/platform/cloudfoundry/broker/sample/ApplicationTests.java rename to src/test/java/org/springframework/cloud/cloudfoundry/broker/sample/ApplicationTests.java index ff7d7d9..4a32347 100644 --- a/src/test/java/org/springframework/platform/cloudfoundry/broker/sample/ApplicationTests.java +++ b/src/test/java/org/springframework/cloud/cloudfoundry/broker/sample/ApplicationTests.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.springframework.platform.cloudfoundry.broker.sample; +package org.springframework.cloud.cloudfoundry.broker.sample; import static org.junit.Assert.assertEquals;