import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.NonNull;
-import org.apache.commons.collections4.MapUtils;
import org.onap.policy.models.base.PfUtils;
import org.onap.policy.models.tosca.authorative.concepts.ToscaEntity;
@NonNull
private UUID compositionId;
- @NonNull
- private AutomationCompositionState state = AutomationCompositionState.UNINITIALISED;
-
- @NonNull
- private AutomationCompositionOrderedState orderedState = AutomationCompositionOrderedState.UNINITIALISED;
-
@NonNull
private DeployState deployState = DeployState.UNDEPLOYED;
super(otherAutomationComposition);
this.instanceId = otherAutomationComposition.instanceId;
this.compositionId = otherAutomationComposition.compositionId;
- this.state = otherAutomationComposition.state;
- this.orderedState = otherAutomationComposition.orderedState;
this.deployState = otherAutomationComposition.deployState;
this.lockState = otherAutomationComposition.lockState;
this.elements = PfUtils.mapMap(otherAutomationComposition.elements, AutomationCompositionElement::new);
public int compareTo(final AutomationComposition other) {
return compareNameVersion(this, other);
}
-
- /**
- * Set the ordered state on the automation composition and on all its automation composition elements.
- *
- * @param orderedState the state we want the automation composition to transition to
- */
- public void setCascadedOrderedState(final AutomationCompositionOrderedState orderedState) {
- this.orderedState = orderedState;
-
- if (MapUtils.isEmpty(elements)) {
- return;
- }
-
- elements.values().forEach(element -> element.setOrderedState(orderedState));
- }
}
import org.onap.policy.models.base.PfConceptKey;
import org.onap.policy.models.base.PfUtils;
import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier;
-import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate;
/**
* Class to represent a automation composition instance.
@NonNull
private UUID participantId = UUID.randomUUID();
- @NonNull
- private AutomationCompositionState state = AutomationCompositionState.UNINITIALISED;
-
@NonNull
private DeployState deployState = DeployState.UNDEPLOYED;
@NonNull
private LockState lockState = LockState.LOCKED;
- @NonNull
- private AutomationCompositionOrderedState orderedState = AutomationCompositionOrderedState.UNINITIALISED;
-
- private ToscaServiceTemplate toscaServiceTemplateFragment;
-
private String description;
// A map indexed by the property name. Each map entry is the serialized value of the property,
this.id = otherElement.id;
this.definition = new ToscaConceptIdentifier(otherElement.definition);
this.participantId = otherElement.participantId;
- this.state = otherElement.state;
- this.orderedState = otherElement.orderedState;
- this.toscaServiceTemplateFragment = otherElement.toscaServiceTemplateFragment;
this.description = otherElement.description;
this.properties = PfUtils.mapMap(otherElement.properties, UnaryOperator.identity());
this.deployState = otherElement.deployState;
private UUID automationCompositionId;
- private AutomationCompositionState state = AutomationCompositionState.UNINITIALISED;
-
private DeployState deployState = DeployState.UNDEPLOYED;
private LockState lockState = LockState.LOCKED;
*/
public AutomationCompositionInfo(final AutomationCompositionInfo otherElement) {
this.automationCompositionId = otherElement.automationCompositionId;
- this.state = otherElement.state;
this.deployState = otherElement.deployState;
this.lockState = otherElement.lockState;
}
+++ /dev/null
-/*-
- * ============LICENSE_START=======================================================
- * Copyright (C) 2021 Nordix Foundation.
- * ================================================================================
- * 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.
- *
- * SPDX-License-Identifier: Apache-2.0
- * ============LICENSE_END=========================================================
- */
-
-package org.onap.policy.clamp.models.acm.concepts;
-
-public enum AutomationCompositionOrderedState {
- /**
- * The automation composition or automation composition element should become uninitialised on participants, it
- * should not exist on participants.
- */
- UNINITIALISED,
- /**
- * The automation composition or automation composition element should initialised on the participants and be
- * passive, that is, it is not handling automation composition messages yet.
- */
- PASSIVE,
- /**
- * The automation composition or automation composition element should running and is executing automation
- * compositions.
- */
- RUNNING;
-
- public boolean equalsAutomationCompositionState(final AutomationCompositionState automationCompositionState) {
- return this.name().equals(automationCompositionState.name());
- }
-
- public AutomationCompositionState asState() {
- return AutomationCompositionState.valueOf(this.name());
- }
-}
+++ /dev/null
-/*-
- * ============LICENSE_START=======================================================
- * Copyright (C) 2021 Nordix Foundation.
- * ================================================================================
- * 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.
- *
- * SPDX-License-Identifier: Apache-2.0
- * ============LICENSE_END=========================================================
- */
-
-package org.onap.policy.clamp.models.acm.concepts;
-
-public enum AutomationCompositionState {
- /**
- * The automation composition or automation composition element is not initialised on participants, it does not
- * exist on participants.
- */
- UNINITIALISED,
- /**
- * The automation composition or automation composition element is changing from unitialised to passive, it is being
- * initialised onto participants.
- */
- UNINITIALISED2PASSIVE,
- /**
- * The automation composition or automation composition element is initialised on the participants but is passive,
- * that is, it is not handling automation composition messages yet.
- */
- PASSIVE,
- /**
- * The automation composition or automation composition element is changing from passive to running, the
- * participants are preparing to execute automation compositions.
- */
- PASSIVE2RUNNING,
- /**
- * The automation composition or automation composition element is running and is executing automation compositions.
- */
- RUNNING,
- /**
- * The automation composition or automation composition element is completing execution of current automation
- * compositions but will not start running any more automation compositions and will become passive.
- */
- RUNNING2PASSIVE,
- /**
- * The automation composition or automation composition element is changing from passive to unitialised, the
- * automation composition is being removed from participants.
- */
- PASSIVE2UNINITIALISED;
-
- public boolean equalsAutomationCompositionOrderedState(
- final AutomationCompositionOrderedState automationCompositionOrderedState) {
- return this.name().equals(automationCompositionOrderedState.name());
- }
-
- public AutomationCompositionOrderedState asOrderedState() {
- return AutomationCompositionOrderedState.valueOf(this.name());
- }
-}
private UUID participantId;
- // List of AutomationCompositionElement values for a particular participant
- private List<AutomationCompositionElement> automationCompositionElementList = new ArrayList<>();
-
// List of Automation Composition Element Deploy for a particular participant
private List<AcElementDeploy> acElementList = new ArrayList<>();
*/
public ParticipantDeploy(final ParticipantDeploy copyConstructor) {
this.participantId = copyConstructor.participantId;
- this.automationCompositionElementList = PfUtils.mapList(
- copyConstructor.automationCompositionElementList, AutomationCompositionElement::new);
this.acElementList = PfUtils.mapList(copyConstructor.acElementList, AcElementDeploy::new);
}
}
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
-import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionOrderedState;
-import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionState;
import org.onap.policy.clamp.models.acm.messages.rest.instantiation.DeployOrder;
import org.onap.policy.clamp.models.acm.messages.rest.instantiation.LockOrder;
@Setter
@ToString(callSuper = true)
public class AutomationCompositionStateChange extends ParticipantMessage {
- private AutomationCompositionOrderedState orderedState;
- private AutomationCompositionState currentState;
private DeployOrder deployOrderedState = DeployOrder.NONE;
private LockOrder lockOrderedState = LockOrder.NONE;
private Integer startPhase;
*/
public AutomationCompositionStateChange(AutomationCompositionStateChange source) {
super(source);
-
- this.orderedState = source.orderedState;
- this.currentState = source.currentState;
this.deployOrderedState = source.deployOrderedState;
this.lockOrderedState = source.lockOrderedState;
this.startPhase = source.startPhase;