All Downloads are FREE. Search and download functionalities are using the official Maven repository.

brooklyn.entity.basic.EffectorWithExplicitImplementation Maven / Gradle / Ivy

package brooklyn.entity.basic;

import java.util.List;

import brooklyn.entity.ParameterType;

import com.google.common.collect.ImmutableList;

/**
 * @deprecated will be deleted in 0.5. Now called ExplicitEffector.
 */
@Deprecated
public abstract class EffectorWithExplicitImplementation extends ExplicitEffector {
    public EffectorWithExplicitImplementation(String name, Class type, String description) {
        super(name, type, ImmutableList.>of(), description);
    }
    
    public EffectorWithExplicitImplementation(String name, Class type, List> parameters, String description) {
        super(name, type, parameters, description);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy