InternalForwardedRequestCustomizerFactory.java 1.17 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  org.apache.felix.http.jetty.LoadBalancerCustomizerFactory
 *  org.apache.felix.scr.annotations.Component
 *  org.apache.felix.scr.annotations.Properties
 *  org.apache.felix.scr.annotations.Property
 *  org.apache.felix.scr.annotations.Service
 *  org.eclipse.jetty.server.HttpConfiguration
 *  org.eclipse.jetty.server.HttpConfiguration$Customizer
 */
package com.adobe.granite.jetty.ssl.internal;

import com.adobe.granite.jetty.ssl.internal.InternalForwardedRequestCustomizer;
import org.apache.felix.http.jetty.LoadBalancerCustomizerFactory;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Properties;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Service;
import org.eclipse.jetty.server.HttpConfiguration;

@Component
@Service
@Properties(value={@Property(name="service.ranking", intValue={1000})})
public class InternalForwardedRequestCustomizerFactory
implements LoadBalancerCustomizerFactory {
    public HttpConfiguration.Customizer createCustomizer() {
        return new InternalForwardedRequestCustomizer();
    }
}