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

io.yawp.repository.tools.DeleteAll Maven / Gradle / Ivy

There is a newer version: 2.08alpha
Show newest version
package io.yawp.repository.tools;

import io.yawp.driver.api.DriverFactory;
import io.yawp.driver.api.HelpersDriver;
import io.yawp.driver.api.NamespaceDriver;

public class DeleteAll {

	public static void now(String ns) {
		namespace().set(ns);
		now();
	}

	public static void now() {
		helpers().deleteAll();
	}

	private static NamespaceDriver namespace() {
		return DriverFactory.getDriver().namespace();
	}

	private static HelpersDriver helpers() {
		return DriverFactory.getDriver().helpers();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy