summaryrefslogtreecommitdiffstats
path: root/EssentialsGeoIP/src/com/earth2me/essentials/geoip/ConfigHolder.java
blob: e2d82d644c42e623bdb7d5fd166a7ac6b940b39b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.earth2me.essentials.geoip;

import com.earth2me.essentials.api.IEssentials;
import com.earth2me.essentials.settings.geoip.GeoIP;
import com.earth2me.essentials.storage.AsyncStorageObjectHolder;
import java.io.File;
import java.io.IOException;
import org.bukkit.plugin.Plugin;

public class ConfigHolder extends AsyncStorageObjectHolder<GeoIP>
{
	private final transient Plugin geoip;

	public ConfigHolder(final IEssentials ess, final Plugin geoip)
	{
		super(ess, GeoIP.class);
		this.geoip = geoip;
		onReload();
	}

	@Override
	public File getStorageFile() throws IOException
	{
		return new File(geoip.getDataFolder(), "config.yml");
	}

}