Changeset 1067
- Timestamp:
- 07/08/08 19:13:20 (4 years ago)
- Location:
- trunk/src/java/org/jcoderz/commons/config
- Files:
-
- 4 modified
-
ConfigurationServiceBean.java (modified) (1 diff)
-
ConfigurationServiceImpl.java (modified) (3 diffs)
-
ConfigurationServiceInterface.java (modified) (1 diff)
-
ServiceConfiguration.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/java/org/jcoderz/commons/config/ConfigurationServiceBean.java
r1011 r1067 37 37 38 38 /** 39 * The (stateless) session bean fa scade of the Configuration Service.39 * The (stateless) session bean facade of the Configuration Service. 40 40 * 41 41 * XDoclet tags for the Bean must be declared in this class; XDoclet tags for -
trunk/src/java/org/jcoderz/commons/config/ConfigurationServiceImpl.java
r1011 r1067 42 42 * Implementation of the ConfigurationService business methods. 43 43 * 44 * This class holds all business logic of the service to fetch specif c44 * This class holds all business logic of the service to fetch specific 45 45 * configuration data. 46 46 * Implementing the business interface ConfigurationServiceInterface. 47 47 * 48 * On this level only primit ve types String, int, long and boolean are used.49 * The well formed and complex typed interfaces for the specific services are48 * On this level only primitive types String, int, long and boolean are used. 49 * The well-formed and complex typed interfaces for the specific services are 50 50 * using this more simple interface. 51 51 * 52 52 * IMPORTANT: 53 * Because of XDoclet Bug in current version, we define del igators to the super53 * Because of XDoclet Bug in current version, we define delegators to the super 54 54 * class with ejb-tags here. 55 55 * These should be deleted if XDoclet is fixed. … … 85 85 } 86 86 87 87 88 88 /** {@inheritDoc} */ 89 89 public ServiceConfiguration getServiceConfiguration ( … … 106 106 107 107 // IMPORTANT: 108 // Because of XDoclet Bug in current version, we define the del igators108 // Because of XDoclet Bug in current version, we define the delegators 109 109 // here with ejb-tags. 110 110 // Normally the implementation from CommonImpl is already inherited. -
trunk/src/java/org/jcoderz/commons/config/ConfigurationServiceInterface.java
r1011 r1067 41 41 * configuration data. 42 42 * 43 * On this level only primit ve types String, int, long and boolean are used.44 * The well formed and complex typed interfaces for the specific services are43 * On this level only primitive types String, int, long and boolean are used. 44 * The well formed and complex typed interfaces for the specific services are 45 45 * using this more simple interface. 46 46 * 47 47 * A factory method is provided to get the service specific typed interface. 48 * The service specif c, wellformed and typed interfaces and their49 * implementation sis aregenerated by XSLT.48 * The service specific, well formed and typed interfaces and their 49 * implementation is generated by XSLT. 50 50 * 51 51 * For notifications of cache updates a registration for a ConfigurationListener -
trunk/src/java/org/jcoderz/commons/config/ServiceConfiguration.java
r1011 r1067 46 46 47 47 /** 48 * selects the c hache mode,if the types interface implementation should cache48 * selects the cache mode,if the types interface implementation should cache 49 49 * its configuration. The caching is enabled by default. 50 50 *
