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

org.mapfish.print.config.AcceptAllMatcher Maven / Gradle / Ivy

package org.mapfish.print.config;

import java.net.MalformedURLException;
import java.net.SocketException;
import java.net.URI;
import java.net.UnknownHostException;

/**
* Created by Jesse on 1/20/14.
*/
public class AcceptAllMatcher extends HostMatcher {
    @Override
    public boolean validate(URI uri) throws UnknownHostException, SocketException, MalformedURLException {
        return true;
    }

    @Override
    public String toString() {
        return "Accept All";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy