]> git.argeo.org Git - lgpl/argeo-commons.git/blob - ContentNamespace.java
f91a177f416eb9430d4b2e0b1bd5cf82b577d102
[lgpl/argeo-commons.git] / ContentNamespace.java
1 package org.argeo.api.acr.spi;
2
3 import java.net.URL;
4
5 /** A namespace and its default prefix, possibly with a schema definition. */
6 public interface ContentNamespace {
7 String getDefaultPrefix();
8
9 String getNamespaceURI();
10
11 URL getSchemaResource();
12
13 }