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

net.anotheria.anosite.guard.DisableTargetGuard Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package net.anotheria.anosite.guard;

import net.anotheria.asg.data.DataObject;
import net.anotheria.asg.exception.ASGRuntimeException;

import jakarta.servlet.http.HttpServletRequest;

/**
 * @author Vlad Lukjanenko
 */
public class DisableTargetGuard implements ConditionalGuard {

    @Override
    public boolean isConditionFullfilled(DataObject object, HttpServletRequest req) throws ASGRuntimeException {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy