aboutsummaryrefslogtreecommitdiffstats
path: root/docs/cps-stubs.rst
diff options
context:
space:
mode:
authordanielhanrahan <daniel.hanrahan@est.tech>2024-12-04 23:17:36 +0000
committerdanielhanrahan <daniel.hanrahan@est.tech>2025-02-04 11:09:01 +0000
commit59fa1bffe797d2e03212f6037aee732b51e1cb92 (patch)
treef4b084f44dda19c6b38db530e12a88521fc89926 /docs/cps-stubs.rst
parent59f1cc4c5994da34f2c48a2347499f9cfb7bd836 (diff)
Simple implementation of attribute-axis
This minimally implements attribute-axis using existing queryDataNodes API. Acceptance tests are un-ignored now. Issue-ID: CPS-2416 Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech> Change-Id: Ia06be3dd85dfce261d9d78529784d54d84b71bcd
Diffstat (limited to 'docs/cps-stubs.rst')
0 files changed, 0 insertions, 0 deletions
href='#n1'>1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
/*-
 * ============LICENSE_START=======================================================
 * Actor
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed 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.
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.controlloop.actorServiceProvider.spi;

import java.util.List;

public interface Actor {
	
	public String	actor();
	
	public List<String>	recipes();
	
	public List<String> recipeTargets(String recipe);
	
	public List<String> recipePayloads(String recipe);

}