blob: b2950624686226d4bae28c0658f669cc9abf5c9d [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.service.list;
import java.util.ArrayList;
import java.util.List;
import org.apache.karaf.webconsole.osgi.core.service.column.ObjectClassColumn;
import org.apache.karaf.webconsole.osgi.core.service.column.ServiceConsumerColumn;
import org.apache.karaf.webconsole.osgi.core.service.column.ServicePropertyColumn;
import org.apache.karaf.webconsole.osgi.core.service.column.ServiceProviderColumn;
import org.apache.karaf.webconsole.osgi.core.shared.OsgiPage;
import org.apache.karaf.webconsole.osgi.core.shared.ServiceDataProvider;
import org.apache.wicket.extensions.markup.html.repeater.data.table.DefaultDataTable;
import org.apache.wicket.extensions.markup.html.repeater.data.table.IColumn;
import org.apache.wicket.model.Model;
import org.ops4j.pax.wicket.api.PaxWicketMountPoint;
import org.osgi.framework.Constants;
import org.osgi.framework.ServiceReference;
/**
* Service list page.
*/
@PaxWicketMountPoint(mountPoint = "/osgi/service")
public class ServicePage extends OsgiPage {
private static final long serialVersionUID = 1L;
public ServicePage() {
List<IColumn<ServiceReference>> columns = new ArrayList<IColumn<ServiceReference>>();
columns.add(new ServicePropertyColumn("Service Id", Constants.SERVICE_ID));
columns.add(new ObjectClassColumn(Model.of("Object classes")));
columns.add(new ServiceProviderColumn(Model.of("Provider")));
columns.add(new ServiceConsumerColumn("Consumers"));
add(new DefaultDataTable<ServiceReference>("services", columns, new ServiceDataProvider(context, (String) null), Integer.MAX_VALUE));
}
}