All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.mo.ExtensionManager Maven / Gradle / Ivy

There is a newer version: 6.0.05
Show newest version
/*================================================================================
Copyright (c) 2012 Steve Jin. All Rights Reserved.
Copyright (c) 2008 VMware, Inc. All Rights Reserved.

Redistribution and use in source and binary forms, with or without modification, 
are permitted provided that the following conditions are met:

 * Redistributions of source code must retain the above copyright notice, 
this list of conditions and the following disclaimer.

 * Redistributions in binary form must reproduce the above copyright notice, 
this list of conditions and the following disclaimer in the documentation 
and/or other materials provided with the distribution.

 * Neither the name of VMware, Inc. nor the names of its contributors may be used
to endorse or promote products derived from this software without specific prior 
written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
POSSIBILITY OF SUCH DAMAGE.
================================================================================*/

package com.vmware.vim25.mo;

import com.vmware.vim25.*;
import com.vmware.vim25.mo.util.MorUtil;

import java.rmi.RemoteException;

/**
 * The managed object class corresponding to the one defined in VI SDK API
 * reference.
 *
 * @author Steve JIN (http://www.doublecloud.org)
 */

public class ExtensionManager extends ManagedObject {

    public ExtensionManager(ServerConnection serverConnection, ManagedObjectReference mor) {
        super(serverConnection, mor);
    }

    /**
     * Retrieve all the registered plugins objects
     *
     * @return An array of extension objects. If no extension found, an empty
     * array is returned.
     */

    public Extension[] getExtensionList() {
        return (Extension[]) getCurrentProperty("extensionList");
    }

    /**
     * @since SDK5.1
     */
    public ExtensionManagerIpAllocationUsage[] queryExtensionIpAllocationUsage(String[] extensionKeys) throws RuntimeFault, RemoteException {
        return getVimService().queryExtensionIpAllocationUsage(getMOR(), extensionKeys);
    }

    /**
     * @since SDK4.0
     */
    public void setExtensionCertificate(String extensionKey, String certificatePem) throws NotFound, NoClientCertificate, RuntimeFault, RemoteException {
        getVimService().setExtensionCertificate(getMOR(), extensionKey, certificatePem);
    }

    /**
     * @since SDK5.0
     */
    public ManagedEntity[] queryManagedBy(String extensionKey) throws RuntimeFault, RemoteException {
        ManagedObjectReference[] mors = getVimService().queryManagedBy(getMOR(), extensionKey);
        return MorUtil.createManagedEntities(getServerConnection(), mors);
    }

    public void setPublicKey(String extensionKey, String publicKey) throws RuntimeFault, RemoteException {
        getVimService().setPublicKey(getMOR(), extensionKey, publicKey);
    }

    /**
     * Un-register an existing plugin If keyStr is null then a
     * NullPointerException is thrown.
     *
     * @param keyStr The unique key of the plugin
     * @throws RemoteException
     * @throws RuntimeFault
     * @throws NotFound        either because of the web service itself, or because of the
     *                         service provider unable to handle the request.
     */
    public void unregisterExtension(String keyStr) throws NotFound, RuntimeFault, RemoteException {
        if (keyStr == null) {
            throw new NullPointerException();
        }
        getVimService().unregisterExtension(getMOR(), keyStr);
    }

    /**
     * Update an existing plugin with modified information If
     * extension is null then a NullPointerException is
     * thrown.
     *
     * @param extension The extension object with updated information
     * @throws RemoteException
     * @throws RuntimeFault
     * @throws NotFound        either because of the web service itself, or because of the
     *                         service provider unable to handle the request.
     */
    public void updateExtension(Extension extension) throws NotFound, RuntimeFault, RemoteException {
        if (extension == null) {
            throw new NullPointerException();
        }

        encodeUrl(extension);

        getVimService().updateExtension(getMOR(), extension);
    }

    /**
     * Register a new plugin If extension is null then a
     * NullPointerException is thrown.
     *
     * @param extension The extension object to be registered
     * @throws RemoteException
     * @throws RuntimeFault    either because of the web service itself, or because of the
     *                         service provider unable to handle the request.
     */
    public void registerExtension(Extension extension) throws RuntimeFault, RemoteException {
        if (extension == null) {
            throw new NullPointerException();
        }
        encodeUrl(extension);
        getVimService().registerExtension(getMOR(), extension);
    }

    /**
     * Find the extension based on the unique key of the plugin If
     * keyStr is null then a NullPointerException
     *
     * @param keyStr The unique key for the plugin
     * @return The extension object found with the unique key
     * @throws RemoteException
     * @throws RuntimeFault
     * @throws RemoteException if something is wrong with web service call, either because of
     *                         the web service itself, or because of the service provider unable
     *                         to handle the request.
     */
    public Extension findExtension(String keyStr) throws RuntimeFault, RemoteException {
        if (keyStr == null) {
            throw new NullPointerException();
        }
        return getVimService().findExtension(getMOR(), keyStr);
    }

    protected void encodeUrl(Extension extension) {
        // replace all the & in the url with &
        for (int i = 0; extension.client != null && i < extension.client.length; i++) {
            ExtensionClientInfo eci = extension.client[i];
            if (eci.url.contains("&")) {
                eci.url = eci.url.replaceAll("&", "&");
            }
        }
        for (int i = 0; extension.server != null && i < extension.server.length; i++) {
            ExtensionServerInfo esi = extension.server[i];
            if (esi.url.contains("&")) {
                esi.url = esi.url.replaceAll("&", "&");
            }
        }
    }

    /**
     * Print out information of all the plugins to stdout
     *
     * @deprecated
     */
    public void printAllExtensions() {
        Extension[] exts = getExtensionList();

        System.out.println("There are totally " + exts.length + " plugin(s) registered.");

        for (int i = 0; i < exts.length; i++) {
            System.out.println("\n ---- Plugin # " + (i + 1) + " ---- ");
            System.out.println("Key: " + exts[i].getKey());
            System.out.println("Version: " + exts[i].getVersion());
            System.out.println("Registration Time: " + exts[i].getLastHeartbeatTime().getTime());
            System.out.println("Configuration URL: " + exts[i].getServer()[0].getUrl());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy