SchemaService.java 1.07 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.xmp.path.XMPPath
 *  com.adobe.xmp.schema.model.PropertyDescription
 *  com.adobe.xmp.schema.model.PropertyType
 *  com.adobe.xmp.schema.model.SchemaDescription
 */
package com.adobe.xmp.schema.service;

import com.adobe.xmp.path.XMPPath;
import com.adobe.xmp.schema.model.PropertyDescription;
import com.adobe.xmp.schema.model.PropertyType;
import com.adobe.xmp.schema.model.SchemaDescription;
import com.adobe.xmp.schema.service.SchemaServiceException;
import java.io.InputStream;

public interface SchemaService {
    public SchemaDescription getSchemaForURI(String var1) throws SchemaServiceException;

    public PropertyType getType(XMPPath var1) throws SchemaServiceException;

    public PropertyDescription getProperty(XMPPath var1) throws SchemaServiceException;

    public SchemaDescription parseRelaxNG(InputStream var1, INamespaceCallback var2) throws SchemaServiceException;

    public static interface INamespaceCallback {
        public void notify(String var1, String var2);
    }

}