com.arjuna.webservices11.util.ServiceRegistryAction Maven / Gradle / Ivy
The newest version!
/*
Copyright The Narayana Authors
SPDX-License-Identifier: Apache-2.0
*/
package com.arjuna.webservices11.util;
import com.arjuna.webservices11.ServiceRegistry;
import java.security.PrivilegedAction;
/**
* @author Gytis Trikleris
*/
public class ServiceRegistryAction implements PrivilegedAction {
private static final ServiceRegistryAction INSTANCE = new ServiceRegistryAction();
private ServiceRegistryAction() {
}
public static ServiceRegistryAction getInstance() {
return INSTANCE;
}
@Override
public ServiceRegistry run() {
return ServiceRegistry.getRegistry();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy