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

com.ja.smarkdown.location.http.SmarkdownHttpLocationHandler Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
package com.ja.smarkdown.location.http;

import java.util.ArrayList;
import java.util.List;

import javax.inject.Inject;

import com.ja.smarkdown.model.LocationHandler;
import com.ja.smarkdown.model.ResourceInfo;
import com.ja.smarkdown.model.config.Location;

public class SmarkdownHttpLocationHandler implements LocationHandler {

	@Inject
	private SmarkdownHttpListingProvider listing;
	@Inject
	private SmarkdownHttpDocumentProvider documents;

	private List locations = new ArrayList();

	@Override
	public List listDocuments() {
		return listing.getDocuments(locations);
	}

	@Override
	public ResourceInfo loadDocument(final String resource) {
		return documents.getDocument(locations, resource);
	}

	public void add(final HttpLocation location) {
		locations.add(location);
	}

	@Override
	public void add(final Location location) {
		add(new HttpLocation(location));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy