org.springframework.osgi.mock.EntryLookupControllingMockBundle Maven / Gradle / Ivy
/*
* Copyright 2006 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.osgi.mock;
import java.net.URL;
import java.util.Dictionary;
import java.util.Enumeration;
import org.osgi.framework.BundleContext;
/**
* Mock Bundle that allows the entry to return on future calls.
*
* @author Adrian Colyer
*
*/
public class EntryLookupControllingMockBundle extends MockBundle {
protected Enumeration nextFindResult = null;
protected URL nextEntryResult = null;
public EntryLookupControllingMockBundle(Dictionary headers) {
super(headers);
}
public void setResultsToReturnOnNextCallToFindEntries(String[] findResult) {
if (findResult == null) {
findResult = new String[0];
}
this.nextFindResult = createEnumerationOver(findResult);
}
public Enumeration findEntries(String path, String filePattern, boolean recurse) {
if (this.nextFindResult == null) {
return super.findEntries(path, filePattern, recurse);
}
else {
Enumeration ret = this.nextFindResult;
this.nextFindResult = null;
return ret;
}
}
public void setEntryReturnOnNextCallToGetEntry(URL entry) {
this.nextEntryResult = entry;
}
public URL getEntry(String name) {
if (this.nextEntryResult != null) {
URL result = this.nextEntryResult;
this.nextEntryResult = null;
return result;
}
else {
return super.getEntry(name);
}
}
public URL getResource(String name) {
return getEntry(name);
}
// for OsgiResourceUtils
public BundleContext getContext() {
return super.getContext();
}
protected Enumeration createEnumerationOver(String[] entries) {
return new ArrayEnumerator(entries);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy