You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ResourceResolver.java 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id$ */
  18. package org.apache.fop.apps.io;
  19. import java.io.IOException;
  20. import java.io.OutputStream;
  21. import java.net.URI;
  22. /**
  23. * Implementations of this resource resolver allow FOP users to control the URI resolution
  24. * mechanism. All resource and output stream acquisition goes through this when its implementation
  25. * is given to the {@link org.apache.fop.apps.EnvironmentProfile}.
  26. */
  27. public interface ResourceResolver {
  28. /**
  29. * Get a resource given the URI pointing to said resource.
  30. *
  31. * @param uri the resource URI
  32. * @return the resource
  33. * @throws IOException if an I/O error occured during resource acquisition
  34. */
  35. Resource getResource(URI uri) throws IOException;
  36. /**
  37. * Gets an output stream of a given URI.
  38. *
  39. * @param uri the output stream URI
  40. * @return the output stream
  41. * @throws IOException if an I/O error occured while creating an output stream
  42. */
  43. OutputStream getOutputStream(URI uri) throws IOException;
  44. }