/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.core.registry; import org.mule.runtime.core.api.MuleContext; import org.mule.runtime.api.exception.MuleException; import org.mule.runtime.core.api.context.MuleContextAware; import org.mule.runtime.api.lifecycle.InitialisationException; import org.mule.runtime.api.lifecycle.Lifecycle; import java.util.ArrayList; import java.util.List; /** * TODO */ public abstract class AbstractLifecycleTracker implements Lifecycle, MuleContextAware { private final List<String> tracker = new ArrayList<>(); public List<String> getTracker() { return tracker; } public void setProperty(final String value) { tracker.add("setProperty"); } public void setMuleContext(final MuleContext context) { tracker.add("setMuleContext"); } public void initialise() throws InitialisationException { tracker.add("initialise"); } public void start() throws MuleException { tracker.add("start"); } public void stop() throws MuleException { tracker.add("stop"); } public void dispose() { tracker.add("dispose"); } }