RequestHandler.java 792 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ConsumerType
 *  org.apache.sling.api.SlingException
 *  org.apache.sling.api.SlingHttpServletRequest
 *  org.apache.sling.api.resource.ResourceNotFoundException
 *  org.apache.sling.servlets.post.PostResponse
 */
package com.adobe.granite.rest.impl.servlet;

import aQute.bnd.annotation.ConsumerType;
import org.apache.sling.api.SlingException;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.resource.ResourceNotFoundException;
import org.apache.sling.servlets.post.PostResponse;

@ConsumerType
public interface RequestHandler {
    public void handle(SlingHttpServletRequest var1, PostResponse var2) throws ResourceNotFoundException, SlingException;
}