/* * 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.policy.followthesun; import static com.google.common.base.Preconditions.checkNotNull; import java.io.Serializable; import org.apache.brooklyn.api.entity.Entity; import org.apache.brooklyn.api.entity.Group; import org.apache.brooklyn.api.entity.ImplementedBy; import org.apache.brooklyn.core.entity.trait.Resizable; import org.apache.brooklyn.core.sensor.BasicNotificationSensor; @ImplementedBy(FollowTheSunPoolImpl.class) public interface FollowTheSunPool extends Entity, Resizable { // FIXME Remove duplication from BalanceableWorkerPool? // FIXME Asymmetry between loadbalancing and followTheSun: ITEM_ADDED and ITEM_REMOVED in loadbalancing // are of type ContainerItemPair, but in followTheSun it is just the `Entity item`. /** Encapsulates an item and a container; emitted by sensors. */ public static class ContainerItemPair implements Serializable { private static final long serialVersionUID = 1L; public final Entity container; public final Entity item; public ContainerItemPair(Entity container, Entity item) { this.container = container; this.item = checkNotNull(item); } @Override public String toString() { return ""+item+" @ "+container; } } // Pool constituent notifications. public static BasicNotificationSensor<Entity> CONTAINER_ADDED = new BasicNotificationSensor<Entity>( Entity.class, "followthesun.container.added", "Container added"); public static BasicNotificationSensor<Entity> CONTAINER_REMOVED = new BasicNotificationSensor<Entity>( Entity.class, "followthesun.container.removed", "Container removed"); public static BasicNotificationSensor<Entity> ITEM_ADDED = new BasicNotificationSensor<Entity>( Entity.class, "followthesun.item.added", "Item added"); public static BasicNotificationSensor<Entity> ITEM_REMOVED = new BasicNotificationSensor<Entity>( Entity.class, "followthesun.item.removed", "Item removed"); public static BasicNotificationSensor<ContainerItemPair> ITEM_MOVED = new BasicNotificationSensor<ContainerItemPair>( ContainerItemPair.class, "followthesun.item.moved", "Item moved to the given container"); public void setContents(Group containerGroup, Group itemGroup); public Group getContainerGroup(); public Group getItemGroup(); }