comparison src/org/tmatesoft/hg/core/SessionContext.java @ 490:b3c16d1aede0

Refactoring: move HgRepository's implementation aspects to Internals (which is now its imlementation counterpart and primary repository class to be used by other parts of the library)
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 16 Aug 2012 17:08:34 +0200
parents 909306e412e2
children e4ee4bf4c7d0
comparison
equal deleted inserted replaced
489:9c0138cda59a 490:b3c16d1aede0
43 * @return value of the session parameter, defaultValue if none found 43 * @return value of the session parameter, defaultValue if none found
44 */ 44 */
45 public abstract Object getConfigurationProperty(String name, Object defaultValue); 45 public abstract Object getConfigurationProperty(String name, Object defaultValue);
46 // perhaps, later may add Configuration object, with PropertyMarshal's helpers 46 // perhaps, later may add Configuration object, with PropertyMarshal's helpers
47 // e.g. when there's standalone Caches and WritableSessionProperties objects 47 // e.g. when there's standalone Caches and WritableSessionProperties objects
48
49 /**
50 * Providers of the context may implement
51 */
52 public interface Source {
53 SessionContext getSessionContext();
54 }
48 } 55 }