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

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

The newest version!
package com.sitewhere.spi.server.tenant;

import java.util.List;

import com.sitewhere.spi.SiteWhereException;
import com.sitewhere.spi.server.lifecycle.ILifecycleComponent;

/**
 * Manages the list of available tenant templates that can be used when creating
 * a new tenant.
 * 
 * @author Derek
 */
public interface ITenantTemplateManager extends ILifecycleComponent {

    /**
     * Get list of templates that can be used to create a new tenant.
     * 
     * @return
     * @throws SiteWhereException
     */
    public List getTenantTemplates() throws SiteWhereException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy