/** * Copyright 2005-2016 Red Hat, Inc. * * Red Hat licenses this file to you 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 io.fabric8.spring.boot; import io.fabric8.kubernetes.api.model.Service; import org.springframework.beans.factory.FactoryBean; import org.springframework.beans.factory.InitializingBean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.core.convert.ConversionService; public class KubernetesServiceFactoryBean implements FactoryBean<Object>, InitializingBean { private Class<?> type; private String name; private String port; private Service service; @Autowired private ConversionService conversionService; @Override public Object getObject() throws Exception { if (type.equals(Service.class)) { return service; } else { return conversionService.convert(service, type); } } @Override public Class<?> getObjectType() { return type; } @Override public boolean isSingleton() { return true; } @Override public void afterPropertiesSet() throws Exception { } public Class<?> getType() { return type; } public void setType(Class<?> type) { this.type = type; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPort() { return port; } public void setPort(String port) { this.port = port; } public Service getService() { return service; } public void setService(Service service) { this.service = service; } public ConversionService getConversionService() { return conversionService; } public void setConversionService(ConversionService conversionService) { this.conversionService = conversionService; } }