blob: b7d3fe68d062f5fec856c10e5edcbafa127c8c7d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.karaf.services.staticcm;
import java.io.IOException;
import java.util.Dictionary;
import java.util.Hashtable;
import java.util.Map;
import org.osgi.service.cm.Configuration;
public class StaticConfigurationImpl implements Configuration {
private final String pid;
private final String factoryPid;
private final Map<String, Object> properties;
public StaticConfigurationImpl(String pid, String factoryPid, Map<String, Object> properties) {
this.pid = pid;
this.factoryPid = factoryPid;
this.properties = properties;
}
@Override
public String getPid() {
return pid;
}
@Override
public Dictionary<String, Object> getProperties() {
return new Hashtable<>(properties);
}
@Override
public void update(Dictionary<String, ?> properties) throws IOException {
throw new UnsupportedOperationException();
}
@Override
public void delete() throws IOException {
throw new UnsupportedOperationException();
}
@Override
public String getFactoryPid() {
return factoryPid;
}
@Override
public void update() throws IOException {
throw new UnsupportedOperationException();
}
@Override
public void setBundleLocation(String location) {
}
@Override
public String getBundleLocation() {
return null;
}
@Override
public long getChangeCount() {
return 0;
}
}