Package org.eclipse.equinox.internal.p2.director

Examples of org.eclipse.equinox.internal.p2.director.ProfileChangeRequest


        this.actionType = actionType;
    }

    public ResolutionResult reviewProfileChangeAction(IProfile profile) throws ProvisioningException {
        MultiStatus initialStatus = getInitialStatus();
        ProfileChangeRequest profileChangeRequest = generateProfileChangeRequest(
                profile, initialStatus, null);
        ProvisioningPlan provisioningPlan = generateProvisioningPlan(profileChangeRequest);
        if (provisioningPlan == null) {
            throw new ProvisioningException("Failed to generate the Provisioning Plan");
        }
View Full Code Here

TOP

Related Classes of org.eclipse.equinox.internal.p2.director.ProfileChangeRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.