WebID Profile and Pod URLs
import com.inrupt.client.webid.WebIdProfile;
// ...
public Set<URI> getPods(String webID) {
try (final var profile = client.read(URI.create(webID), WebIdProfile.class)) {
return profile.getStorages();
}
}Last updated