/** * (C) Copyright 2013 Jabylon (http://www.jabylon.org) and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ /** * */ package org.jabylon.rest.ui.wicket.pages; import org.apache.felix.scr.annotations.Component; import org.apache.felix.scr.annotations.Property; import org.apache.felix.scr.annotations.Reference; import org.apache.felix.scr.annotations.ReferenceCardinality; import org.apache.felix.scr.annotations.Service; import org.apache.wicket.Page; import org.jabylon.index.properties.QueryService; import org.jabylon.rest.ui.util.PageProvider; /** * @author Johannes Utzig (jutzig.dev@googlemail.com) * */ @Component @Service public class SearchPageProvider implements PageProvider { @Property(value="/search") static final String PAGE_PATH = PageProvider.MOUNT_PATH_PROPERTY; /** * not really needed, just make sure the page doesn't get * mounted before the query service is available */ @Reference(cardinality=ReferenceCardinality.MANDATORY_UNARY) private QueryService queryService; /* (non-Javadoc) * @see org.jabylon.rest.ui.util.PageProvider#getPageClass() */ @Override public Class<? extends Page> getPageClass() { return SearchPage.class; } public void bindQueryService(QueryService queryService) { this.queryService = queryService; } public void unbindQueryService(QueryService queryService) { this.queryService = queryService; } }