All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sitewhere.spi.server.tenant.ITenantPersistentState Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
package com.sitewhere.spi.server.tenant;

import com.sitewhere.spi.server.lifecycle.LifecycleStatus;

/**
 * Contains information about a tenant that is persisted across tenant restarts.
 * 
 * @author Derek
 */
public interface ITenantPersistentState {

    /**
     * Get desired state for the tenant.
     * 
     * @return
     */
    public LifecycleStatus getDesiredState();

    /**
     * Get last known state for tenant.
     * 
     * @return
     */
    public LifecycleStatus getLastKnownState();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy