RepositoryThemeRegistration.java 856 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  org.apache.felix.scr.annotations.Component
 *  org.apache.felix.scr.annotations.Service
 *  org.slf4j.Logger
 *  org.slf4j.LoggerFactory
 */
package com.day.cq.theme.impl;

import com.day.cq.theme.Theme;
import com.day.cq.theme.ThemeRegistration;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Service;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Component
@Service(value={ThemeRegistration.class})
public class RepositoryThemeRegistration
implements ThemeRegistration {
    private static final Logger log = LoggerFactory.getLogger(RepositoryThemeRegistration.class);

    @Override
    public Theme getTheme(String id) {
        log.warn("com.day.cq.theme is deprecated since 6.2");
        return null;
    }
}