/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF 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 org.apache.brooklyn.core.entity.factory; import static com.google.common.base.Preconditions.checkNotNull; import java.io.IOException; import java.io.ObjectInputStream; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import java.util.HashMap; import java.util.Map; import org.apache.brooklyn.api.entity.Entity; import org.apache.brooklyn.core.mgmt.persist.DeserializingClassRenamesProvider; import com.google.common.base.Objects; import com.google.common.base.Throwables; /** @deprecated since 0.7.0; use EntitySpec instead, as per {@link EntityFactory} javadoc */ @Deprecated public class BasicConfigurableEntityFactory<T extends Entity> extends AbstractConfigurableEntityFactory<T> { private transient Class<? extends T> clazz; private final String clazzName; public BasicConfigurableEntityFactory(Class<? extends T> clazz) { this(new HashMap(), clazz); } public BasicConfigurableEntityFactory(Map flags, Class<? extends T> clazz) { super(flags); this.clazz = checkNotNull(clazz, "clazz"); this.clazzName = DeserializingClassRenamesProvider.findMappedName(clazz.getName()); } public T newEntity2(Map flags, Entity parent) { try { Constructor<? extends T> constructor = clazz.getConstructor(Map.class, Entity.class); return constructor.newInstance(flags, parent); } catch (InstantiationException e) { throw Throwables.propagate(e); } catch (IllegalAccessException e) { throw Throwables.propagate(e); } catch (InvocationTargetException e) { throw Throwables.propagate(e); } catch (NoSuchMethodException e) { throw Throwables.propagate(e); } } private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); clazz = (Class<T>) getClass().getClassLoader().loadClass(clazzName); } @Override public String toString() { return Objects.toStringHelper(this).add("type", clazzName).toString(); } }