forked from woggioni/rbcs
18 lines
332 B
Java
18 lines
332 B
Java
package net.woggioni.gbcs.api;
|
|
|
|
import org.w3c.dom.Document;
|
|
import org.w3c.dom.Element;
|
|
|
|
public interface CacheProvider<T extends Configuration.Cache> {
|
|
|
|
String getXmlSchemaLocation();
|
|
|
|
String getXmlNamespace();
|
|
|
|
String getXmlType();
|
|
|
|
T deserialize(Element parent);
|
|
|
|
Element serialize(Document doc, T cache);
|
|
}
|