blob: bfd238a688b6f14dc243058fa9175c9724135ce8 [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.webconsole.osgi.core.bundle.list.link;
import org.apache.karaf.webconsole.osgi.core.bundle.list.BundlePage;
import org.apache.wicket.Session;
import org.apache.wicket.authorization.Action;
import org.apache.wicket.authroles.authorization.strategies.role.annotations.AuthorizeAction;
import org.apache.wicket.markup.html.link.Link;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.Model;
import org.apache.wicket.request.cycle.RequestCycle;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleException;
/**
* Bundle uninstallation link.
*/
@AuthorizeAction(action = Action.RENDER, roles = {"admin"})
public class UninstallLink extends Link<Bundle> {
private static final long serialVersionUID = 1L;
public UninstallLink(String id, IModel<Bundle> model) {
super(id, model);}
@Override
public void onClick() {
Bundle bundle = getModelObject();
try {
bundle.uninstall();
Session.get().info(getString("bundle.uninstall", getModel()));
} catch (BundleException e) {
Session.get().error(getString("bundle.uninstall.fail", Model.of(e)));
}
RequestCycle.get().setResponsePage(BundlePage.class);
}
}