blob: e3a8e46b514834c691aadab99c87ac3d361f3506 [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.felix.eventadmin.impl.security;
import org.osgi.framework.Bundle;
import org.osgi.framework.ServiceFactory;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.event.EventAdmin;
/**
* This class is a factory that secures a given <tt>EventAdmin</tt> service by
* wrapping it with a new instance of an <tt>EventAdminSecurityDecorator</tt> on
* any call to its <tt>getService()</tt> method. The decorator will determine the
* appropriate permissions by using the given permission factory and the bundle
* parameter passed to the <tt>getService()</tt> method.
*
* @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
*/
public class SecureEventAdminFactory implements ServiceFactory<EventAdmin>
{
// The EventAdmin to secure
private final EventAdmin m_admin;
/**
* The constructor of the factory. The factory will use the given event admin and
* permission factory to create a new <tt>EventAdminSecurityDecorator</tt>
* on any call to <tt>getService()</tt>.
*
* @param admin The <tt>EventAdmin</tt> service to secure.
*/
public SecureEventAdminFactory(final EventAdmin admin)
{
checkNull(admin, "Admin");
m_admin = admin;
}
/**
* Returns a new <tt>EventAdminSecurityDecorator</tt> initialized with the
* given <tt>EventAdmin</tt>. That in turn will check any call to post or
* send for the appropriate permissions based on the bundle parameter.
*
* @param bundle The bundle used to determine the permissions of the caller
* @param registration The ServiceRegistration that is not used
*
* @return The given service instance wrapped by an <tt>EventAdminSecuriryDecorator</tt>
*
* @see org.osgi.framework.ServiceFactory#getService(org.osgi.framework.Bundle,
* org.osgi.framework.ServiceRegistration)
*/
@Override
public EventAdmin getService(final Bundle bundle,
final ServiceRegistration<EventAdmin> registration)
{
// We don't need to cache this objects since the framework already does this.
return new EventAdminSecurityDecorator(bundle, m_admin);
}
/**
* This method doesn't do anything at the moment.
*
* @param bundle The bundle object that is not used
* @param registration The ServiceRegistration that is not used
* @param service The service object that is not used
*
* @see org.osgi.framework.ServiceFactory#ungetService(org.osgi.framework.Bundle,
* org.osgi.framework.ServiceRegistration, java.lang.Object)
*/
@Override
public void ungetService(final Bundle bundle,
final ServiceRegistration<EventAdmin> registration, final EventAdmin service)
{
// We don't need to do anything here since we hand-out a new instance with
// any call to getService hence, it is o.k. to just wait for the next gc.
}
/*
* This is a utility method that will throw a <tt>NullPointerException</tt>
* in case that the given object is null. The message will be of the form name +
* may not be null.
*/
private void checkNull(final Object object, final String name)
{
if(null == object)
{
throw new NullPointerException(name + " may not be null");
}
}
}