You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
51 lines
1.4 KiB
10 years ago
|
package ru.simsonic.rscPermissions.Sponge;
|
||
|
|
||
|
import java.util.Map;
|
||
|
import org.slf4j.Logger;
|
||
|
import org.spongepowered.api.service.permission.PermissionService;
|
||
|
import org.spongepowered.api.service.permission.SubjectCollection;
|
||
|
import org.spongepowered.api.service.permission.SubjectData;
|
||
|
import org.spongepowered.api.service.permission.context.ContextCalculator;
|
||
|
import ru.simsonic.rscPermissions.SpongePluginMain;
|
||
|
|
||
|
public class SpongePermissionManager implements PermissionService
|
||
|
{
|
||
|
private final SpongePluginMain rscp;
|
||
|
private final Logger logger;
|
||
|
public SpongePermissionManager(SpongePluginMain plugin)
|
||
|
{
|
||
|
this.rscp = plugin;
|
||
|
this.logger = rscp.getLogger();
|
||
|
}
|
||
|
@Override
|
||
|
public SubjectCollection getUserSubjects()
|
||
|
{
|
||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||
|
}
|
||
|
@Override
|
||
|
public SubjectCollection getGroupSubjects()
|
||
|
{
|
||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||
|
}
|
||
|
@Override
|
||
|
public SubjectData getDefaultData()
|
||
|
{
|
||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||
|
}
|
||
|
@Override
|
||
|
public SubjectCollection getSubjects(String identifier)
|
||
|
{
|
||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||
|
}
|
||
|
@Override
|
||
|
public Map<String, SubjectCollection> getKnownSubjects()
|
||
|
{
|
||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||
|
}
|
||
|
@Override
|
||
|
public void registerContextCalculator(ContextCalculator calculator)
|
||
|
{
|
||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||
|
}
|
||
|
}
|