/* * Copyright (c) OSGi Alliance (2009, 2012). All Rights Reserved. * * 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.osgi.jmx.service.provisioning; import java.io.IOException; import javax.management.openmbean.TabularData; import org.osgi.jmx.JmxConstants; /** * This MBean represents the management interface to the OSGi Initial * Provisioning Service * * @version $Id: e8b3b50a6dcbbf23cd0e68a7177fc0c0c1518a33 $ * @ThreadSafe */ public interface ProvisioningServiceMBean { /** * Provisioning MBean object name. */ String OBJECTNAME = JmxConstants.OSGI_COMPENDIUM + ":service=provisioning,version=1.2"; /** * Processes the {@code ZipInputStream} contents of the provided zipURL and * extracts information to add to the Provisioning Information dictionary, * as well as, install/update and start bundles. This method causes the * {@code PROVISIONING_UPDATE_COUNT} to be incremented. * * @param zipURL the String form of the URL that will be resolved into a * {@code ZipInputStream} which will be used to add key/value pairs * to the Provisioning Information dictionary and install and start * bundles. If a {@code ZipEntry} does not have an {@code Extra} * field that corresponds to one of the four defined MIME types ( * {@code MIME_STRING}, {@code MIME_BYTE_ARRAY},{@code MIME_BUNDLE}, * and {@code MIME_BUNDLE_URL}) in will be silently ignored. * @throws IOException if an error occurs while processing the * ZipInputStream of the URL. No additions will be made to the * Provisioning Information dictionary and no bundles must be * started or installed. */ public void addInformationFromZip(String zipURL) throws IOException; /** * Adds the key/value pairs contained in {@code info} to the Provisioning * Information dictionary. This method causes the * {@code PROVISIONING_UPDATE_COUNT} to be incremented. * * @see JmxConstants#PROPERTIES_TYPE JmxConstants.PROPERTIES_TYPE for * details of the Tabular Data * * @param info the set of Provisioning Information key/value pairs to add to * the Provisioning Information dictionary. Any keys are values that * are of an invalid type will be silently ignored. * @throws IOException if the operation fails */ public void addInformation(TabularData info) throws IOException; /** * Returns a table representing the Provisioning Information Dictionary. * * @see JmxConstants#PROPERTIES_TYPE JmxConstants.PROPERTIES_TYPE for * details of the Tabular Data * * @throws IOException if the operation fails * @return The table representing the manager dictionary. */ public TabularData listInformation() throws IOException; /** * Replaces the Provisioning Information dictionary with the entries of the * supplied table. This method causes the {@code PROVISIONING_UPDATE_COUNT} * to be incremented. * * @see JmxConstants#PROPERTIES_TYPE JmxConstants.PROPERTIES_TYPE for * details of the Tabular Data * * @param info the new set of Provisioning Information key/value pairs. Any * keys are values that are of an invalid type will be silently * ignored. * @throws IOException if the operation fails */ public void setInformation(TabularData info) throws IOException; }