2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017-2018, 2020 AT&T Intellectual Property. All rights reserved.
 
   6  * Modifications Copyright (C) 2019 Nordix Foundation.
 
   7  * ================================================================================
 
   8  * Licensed under the Apache License, Version 2.0 (the "License");
 
   9  * you may not use this file except in compliance with the License.
 
  10  * You may obtain a copy of the License at
 
  12  *      http://www.apache.org/licenses/LICENSE-2.0
 
  14  * Unless required by applicable law or agreed to in writing, software
 
  15  * distributed under the License is distributed on an "AS IS" BASIS,
 
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  17  * See the License for the specific language governing permissions and
 
  18  * limitations under the License.
 
  19  * ============LICENSE_END=========================================================
 
  22 package org.onap.policy.controlloop.actorserviceprovider.spi;
 
  24 import java.util.Collection;
 
  26 import java.util.List;
 
  29 import org.onap.policy.common.capabilities.Configurable;
 
  30 import org.onap.policy.common.capabilities.Startable;
 
  31 import org.onap.policy.controlloop.actorserviceprovider.Operator;
 
  34  * This is the service interface for defining an Actor used in Control Loop Operational
 
  35  * Policies for performing actions on runtime entities.
 
  37  * @author pameladragosh
 
  40 public interface Actor extends Startable, Configurable<Map<String,Object>> {
 
  43      * Gets the name of the actor.
 
  45      * @return the actor name
 
  50      * Gets a particular operator.
 
  52      * @param name name of the operation of interest
 
  53      * @return the desired operation
 
  54      * @throws IllegalArgumentException if no operation by the given name exists
 
  56     Operator getOperator(String name);
 
  59      * Gets the supported operations.
 
  61      * @return the supported operations
 
  63     public Collection<Operator> getOperators();
 
  66      * Gets the names of the supported operations.
 
  68      * @return the names of the supported operations
 
  70     public Set<String> getOperationNames();
 
  73     // TODO old code: remove lines down to **HERE**
 
  77     List<String> recipes();
 
  79     List<String> recipeTargets(String recipe);
 
  81     List<String> recipePayloads(String recipe);