Annotation Interface ConfigurationBeanSpecification
ConfigBeanSpec
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: ConfigurationBeanSpecification.java 920 2021-05-23 14:27:24Z tquadrat $
- Since:
- 0.0.1
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.ConfigurationBeanSpecification"
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionClass
<?> The optional base class for the new configuration bean.The name of the resource with the initialisation data for the configuration bean.The fully qualified name of the class that implements the configuration bean.boolean
The flag that determines the package for the generated bean.boolean
The flag that indicates whether the access to the configuration bean properties should be synchronised.
-
Element Details
-
baseClass
The optional base class for the new configuration bean. The default isObject
(and will be ignored).- Returns:
- The base class.
- Default:
java.lang.Object.class
-
initDataResource
The name of the resource with the initialisation data for the configuration bean.
The resource file must have the format of a Java properties file, and the name is relative to the location of the configuration bean specification interface itself.
The special value "=" translates to the simple name of the interface, suffixed with
.properties
; this means, for a specification interface namedcom.sample.Specification
, the resulting name for the property would beSpecification.properties
.The keys for the properties are properties as specified in the configuration bean specification interface.
- Returns:
- The resource name for an initialisation data property; the default is not having such a resource.
- See Also:
- Default:
""
-
name
The fully qualified name of the class that implements the configuration bean. The default is the empty String.
If no explicit class name is set, it will be derived from the name of the interface that specifies the configuration bean as below:
For a specification interface namedvar packageName = specification.getClass().getPackageName(); var specificationName = specification.getClass().getSimpleName(); var className = format( "%sgenerated.%sImpl", packageName.isEmpty() ? "" : packageName + ".", specificationName );
com.sample.Specification
, the resulting name would becom.sample.generated.SpecificationImpl
.- Returns:
- The intended name of the configuration bean class.
- Default:
""
-
samePackage
boolean samePackageThe flag that determines the package for the generated bean. Iffalse
(the default) it will be put to a package namedgenerated
below the package of the specification interface, ontrue
it will be stored to the same package with the specification interface.- Returns:
true
if the generated configuration bean should be placed in the same package as the specification interface,false
if it should be placed to thegenerated
sub-package.
- Default:
false
-
synchronizeAccess
boolean synchronizeAccessThe flag that indicates whether the access to the configuration bean properties should be synchronised. The default istrue
.- Returns:
true
if any access to a configuration value has to be thread-safe,false
otherwise.
- Default:
true
-