blob: 0173244d379994cb2b5658cf17c95c5c9dfa7861 [file] [log] [blame]
package org.apache.karaf.webconsole.karaf.internal.repository;
import org.apache.karaf.webconsole.core.SidebarPage;
import org.ops4j.pax.wicket.api.PaxWicketMountPoint;
@PaxWicketMountPoint(mountPoint = "/karaf/repositories/add")
public class AddRepositoryPage extends SidebarPage {
public AddRepositoryPage() {
add(new AddRepositoryForm("add"));
}
}