com.societegenerale.cidroid.tasks.consumer.services.ResourceFetcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ci-droid-tasks-consumer-services Show documentation
Show all versions of ci-droid-tasks-consumer-services Show documentation
ci-droid-tasks-consumer services
package com.societegenerale.cidroid.tasks.consumer.services;
import java.util.Optional;
public interface ResourceFetcher {
/**
* @param remoteResource
* @return the resource content as a String. null if resource isn't found / doesn't exist.
*/
Optional fetch(String remoteResource);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy