FormDataProviderRegistry.java 495 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.forms.common.service;

import com.adobe.forms.common.service.DataOptions;
import com.adobe.forms.common.service.DataProviderBase;
import com.adobe.forms.common.service.FormsException;
import com.adobe.forms.common.service.PrefillData;
import java.util.List;

public interface FormDataProviderRegistry {
    public PrefillData getDataFromService(DataOptions var1) throws FormsException;

    public List<DataProviderBase> getProviders();
}