Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package brooklyn.entity.basic;
import java.util.List;
import java.util.Map;
import brooklyn.event.AttributeSensor;
import brooklyn.event.Sensor;
import brooklyn.event.basic.BasicAttributeSensor;
import brooklyn.event.basic.BasicAttributeSensorAndConfigKey;
import brooklyn.event.basic.BasicNotificationSensor;
import brooklyn.event.basic.PortAttributeSensorAndConfigKey;
import brooklyn.event.basic.Sensors;
import brooklyn.location.basic.PortRanges;
import com.google.common.collect.ImmutableList;
/**
* This interface should be used to access {@link Sensor} definitions.
*/
public interface Attributes {
BasicNotificationSensor LOCATION_CHANGED = new BasicNotificationSensor(
Void.class, "entity.locationChanged", "Indicates that an entity's location has been changed");
/**
* Application information sensors.
*
* @deprecated since 0.5; see {@link ConfigKeys#SUGGESTED_VERSION}
*/
@Deprecated
AttributeSensor VERSION = Sensors.newStringSensor( "version", "Version information");
BasicAttributeSensorAndConfigKey DOWNLOAD_URL = new BasicAttributeSensorAndConfigKey(
String.class, "download.url", "URL pattern for downloading the installer (will substitute things like ${version} automatically)");
BasicAttributeSensorAndConfigKey