InputRepository.java (1a37d047) InputRepository.java (30acf5e8)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 37 unchanged lines hidden (view full) ---

46 * be null.
47 *
48 * @return the repository id
49 */
50 Object getId();
51
52 InputStream createInputStream(final String name) throws IOException;
53
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 37 unchanged lines hidden (view full) ---

46 * be null.
47 *
48 * @return the repository id
49 */
50 Object getId();
51
52 InputStream createInputStream(final String name) throws IOException;
53
54 /** allows to acces sub repositories inside this repository
54 /** allows to access sub repositories inside this repository
55 *
56 * @param name describes the path to the sub repository
57 * @return the sub repository
58 * @throws java.io.IOException when the sub repository doesn't exist.
59 */
60 InputRepository openInputRepository(final String name) throws IOException;
61
62 /**

--- 22 unchanged lines hidden ---
55 *
56 * @param name describes the path to the sub repository
57 * @return the sub repository
58 * @throws java.io.IOException when the sub repository doesn't exist.
59 */
60 InputRepository openInputRepository(final String name) throws IOException;
61
62 /**

--- 22 unchanged lines hidden ---