org.apache.brooklyn.api.sensor.EnricherSpec Maven / Gradle / Ivy
/*
* 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.api.sensor;
import java.util.Map;
import org.apache.brooklyn.api.internal.AbstractBrooklynObjectSpec;
import org.apache.brooklyn.api.mgmt.Task;
import org.apache.brooklyn.config.ConfigKey;
import org.apache.brooklyn.config.ConfigKey.HasConfigKey;
/**
* Gives details of an enricher to be created. It describes the enricher's configuration, and is
* reusable to create multiple enrichers with the same configuration.
*
* To create an EnricherSpec, it is strongly encouraged to use {@code create(...)} methods.
*
* @param The type of enricher to be created
*
* @author aled
*/
public class EnricherSpec extends AbstractBrooklynObjectSpec> {
private static final long serialVersionUID = -6012873926010992062L;
/**
* Creates a new {@link EnricherSpec} instance for an enricher of the given type. The returned
* {@link EnricherSpec} can then be customized.
*
* @param type A {@link Enricher} class
*/
public static EnricherSpec create(Class extends T> type) {
return new EnricherSpec(type);
}
/**
* Creates a new {@link EnricherSpec} instance with the given config, for an enricher of the given type.
*
* This is primarily for groovy code; equivalent to {@code EnricherSpec.create(type).configure(config)}.
*
* @param config The spec's configuration (see {@link EnricherSpec#configure(Map)}).
* @param type An {@link Enricher} class
*/
public static EnricherSpec create(Map,?> config, Class type) {
return EnricherSpec.create(type).configure(config);
}
protected EnricherSpec(Class extends T> type) {
super(type);
}
@Override
protected void checkValidType(Class extends T> type) {
checkIsImplementation(type, Enricher.class);
checkIsNewStyleImplementation(type);
}
public EnricherSpec uniqueTag(String uniqueTag) {
flags.put("uniqueTag", uniqueTag);
return this;
}
public abstract static class ExtensibleEnricherSpec> extends EnricherSpec {
private static final long serialVersionUID = -3649347642882809739L;
protected ExtensibleEnricherSpec(Class extends T> type) {
super(type);
}
@Override
@SuppressWarnings("unchecked")
protected K self() {
// we override the AbstractBrooklynObjectSpec method -- it's a different K here because
// EnricherSpec does not contain a parametrisable generic return type (Self)
return (K) this;
}
@Override
public K uniqueTag(String uniqueTag) {
super.uniqueTag(uniqueTag);
return self();
}
@Override
public K configure(Map, ?> val) {
super.configure(val);
return self();
}
@Override
public K configure(CharSequence key, Object val) {
super.configure(key, val);
return self();
}
@Override
public K configure(ConfigKey key, V val) {
super.configure(key, val);
return self();
}
@Override
public K configureIfNotNull(ConfigKey key, V val) {
super.configureIfNotNull(key, val);
return self();
}
@Override
public K configure(ConfigKey key, Task extends V> val) {
super.configure(key, val);
return self();
}
@Override
public K configure(HasConfigKey key, V val) {
super.configure(key, val);
return self();
}
@Override
public K configure(HasConfigKey key, Task extends V> val) {
super.configure(key, val);
return self();
}
}
}