Revision 30619 branches/v2_0_0_prep/libraries/libTools/src/org/gvsig/tools/persistence/impl/ImplementationPersistenceManager.java

View differences:

ImplementationPersistenceManager.java
32 32
import java.util.Set;
33 33

  
34 34
import org.gvsig.tools.dynobject.DynStruct;
35
import org.gvsig.tools.persistence.PersistenceClassNotRegistered;
35 36
import org.gvsig.tools.persistence.PersistenceCreateException;
36 37
import org.gvsig.tools.persistence.PersistenceException;
37 38
import org.gvsig.tools.persistence.PersistenceFactory;
......
101 102
	 */
102 103
	public PersistenceFactory getFactoryFor(PersistentState state);
103 104

  
105

  
106
	public String getDomainName(String theClassName)
107
			throws PersistenceClassNotRegistered;
108

  
109
	public String getDomainURL(String domainName);
110

  
111
	/**
112
	 * Return a read only Map with <code>domainName</code> as key and
113
	 * <code>domainURL</code> as value.
114
	 *
115
	 * @return Map<String,String>
116
	 */
117
	public Map getDomains();
118

  
119
	/**
120
	 * Return a read only Map with <code>className</code> as key and
121
	 * <code>definition</code> as value of a domainName.
122
	 * 
123
	 * @return Map<String,DynStruct>
124
	 */
125
	public Map getDomainDefinitions(String domainName);
104 126
}

Also available in: Unified diff