All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fluentlenium.configuration.CapabilitiesRegistry Maven / Gradle / Ivy

There is a newer version: 5.0.4
Show newest version
package org.fluentlenium.configuration;

import lombok.experimental.Delegate;

/**
 * A registry of {@link CapabilitiesFactory}.
 */
public enum CapabilitiesRegistry {
    /**
     * Singleton.
     */
    INSTANCE;

    @Delegate
    private final CapabilitiesRegistryImpl impl = new CapabilitiesRegistryImpl();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy