protected void resolve(NamespaceInfo namespace) {
resolveCollections(namespace);
}
protected void resolve(StoreInfo store) {
StoreInfoImpl s = (StoreInfoImpl) store;
// resolve the workspace
WorkspaceInfo resolved = ResolvingProxy.resolve(this, s.getWorkspace());
if (resolved != null) {
s.setWorkspace(resolved);
} else {
// this means the workspace has not yet been added to the catalog, keep the proxy around
}
resolveCollections(s);
s.setCatalog(this);
}