/** * Copyright (c) Codice Foundation * <p> * This is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser * General Public License as published by the Free Software Foundation, either version 3 of the * License, or any later version. * <p> * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. A copy of the GNU Lesser General Public License * is distributed along with this program and can be found at * <http://www.gnu.org/licenses/lgpl.html>. **/ package org.codice.ddf.itests.common; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import org.apache.shiro.subject.Subject; import org.codice.ddf.security.common.Security; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Runs the ServiceManager methods as the system subject */ public class ServiceManagerProxy implements InvocationHandler { private static final Security SECURITY = Security.getInstance(); private ServiceManager serviceManager; private static final Logger LOGGER = LoggerFactory.getLogger(ServiceManagerProxy.class); public ServiceManagerProxy(ServiceManager serviceManager) { this.serviceManager = serviceManager; } @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { Subject subject = SECURITY.runAsAdmin(SECURITY::getSystemSubject); return subject.execute(() -> method.invoke(serviceManager, args)); } }