aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/app/styles/images
AgeCommit message (Collapse)AuthorFilesLines
2017-06-09[SDC-29] catalog 1707 rebase commit.Michael Lando171-253/+0
Change-Id: I43c3dc5cf44abf5da817649bc738938a3e8388c1 Signed-off-by: Michael Lando <ml636r@att.com>
2017-02-19Initial OpenECOMP SDC commitMichael Lando171-0/+253
Change-Id: I0924d5a6ae9cdc161ae17c68d3689a30d10f407b Signed-off-by: Michael Lando <ml636r@att.com>
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
/*
 * ============LICENSE_START=======================================================
 * ONAP
 * ================================================================================
 * Copyright (C) 2019-2020 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.drools.lifecycle;

import org.onap.policy.drools.features.DroolsControllerFeatureApi;
import org.onap.policy.drools.features.PolicyControllerFeatureApi;
import org.onap.policy.drools.features.PolicyEngineFeatureApi;
import org.onap.policy.drools.protocol.configuration.DroolsConfiguration;
import org.onap.policy.drools.system.PolicyController;
import org.onap.policy.drools.system.PolicyEngine;

/**
 * This class hooks the Lifecycle State Machine to the PDP-D.
 */
public class LifecycleFeature
    implements PolicyEngineFeatureApi, DroolsControllerFeatureApi, PolicyControllerFeatureApi {
    /**
     * Lifecycle FSM.
     */
    public static final LifecycleFsm fsm = new LifecycleFsm();

    @Override
    public int getSequenceNumber() {
        return 1;
    }

    @Override
    public boolean afterStart(PolicyEngine engine) {
        return fsmStart();
    }

    @Override
    public boolean afterStart(PolicyController controller) {
        return fsmStart(controller);
    }

    @Override
    public boolean afterPatch(
        PolicyController controller, DroolsConfiguration oldConfiguration,
        DroolsConfiguration newConfiguration, boolean success) {
        return fsmPatch(controller);
    }

    @Override
    public boolean beforeStop(PolicyEngine engine) {
        return fsmStop();
    }

    @Override
    public boolean beforeStop(PolicyController controller) {
        return fsmStop(controller);
    }

    @Override
    public boolean beforeShutdown(PolicyEngine engine) {
        return fsmShutdown(engine);
    }

    @Override
    public boolean beforeHalt(PolicyController controller) {
        return fsmStop(controller);
    }

    @Override
    public boolean beforeLock(PolicyController controller) {
        return fsmStop(controller);
    }

    @Override
    public boolean afterUnlock(PolicyController controller) {
        return fsmStart(controller);
    }

    private boolean fsmStart() {
        fsm.start();
        return false;
    }

    private boolean fsmStart(PolicyController controller) {
        fsm.start(controller);
        return false;
    }

    private boolean fsmStop() {
        fsm.stop();
        return false;
    }

    private boolean fsmStop(PolicyController controller) {
        fsm.stop(controller);
        return false;
    }

    private boolean fsmPatch(PolicyController controller) {
        fsm.patch(controller);
        return false;
    }

    private boolean fsmShutdown(PolicyEngine engine) {
        fsm.shutdown();
        return false;
    }
}