blob: 388b4bc0a60bdf9e4daa8024b862fc86a43f339b [file] [log] [blame]
/*
* 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.entity.cm.salt;
import org.apache.brooklyn.api.entity.Entity;
import org.apache.brooklyn.api.location.Location;
import org.apache.brooklyn.api.sensor.AttributeSensor;
import org.apache.brooklyn.core.config.ConfigKeys;
import org.apache.brooklyn.core.sensor.AttributeSensorAndConfigKey;
import org.apache.brooklyn.core.sensor.Sensors;
public final class SaltAttributes {
private SaltAttributes() {
// Utility class
}
public static final AttributeSensor<Location> INFRA_LOCATION = Sensors.newSensor(Location.class,
"infra.location", "The location where the infrastructure is deployed");
public static final AttributeSensorAndConfigKey<Entity, Entity> SALT_INFRASTRUCTURE =
ConfigKeys.newSensorAndConfigKey(Entity.class, "salt.infrastructure", "The SaltStack infrastructure");
}