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

fr.lixbox.service.cache.CacheServiceApp Maven / Gradle / Ivy

/*******************************************************************************
 *    
 *                           FRAMEWORK Lixbox
 *                          ==================
 *      
 * This file is part of lixbox-service cache.
 *
 *    lixbox-iam is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation, either version 3 of the License, or
 *    (at your option) any later version.
 *
 *    lixbox-iam is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *    along with lixbox-service cache.  If not, see 
 *   
 *   @AUTHOR Lixbox-team
 *
 ******************************************************************************/
package fr.lixbox.service.cache;

import java.util.HashSet;
import java.util.Set;

import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;

/**
 * Cette classe assure le démarrage de l'application JAX-RS
 * du Service Registry.
 * 
 * @author ludovic.terral
 */
@ApplicationPath("/cache/api")
public class CacheServiceApp extends Application 
{
    // ----------- Attribut(s) -----------
    private Set singletons = new HashSet<>();

    
    
    // ----------- Methode(s) -----------
    @Override
    public Set getSingletons() 
    {
        return singletons;
    }
}