24
24
import org .springframework .data .repository .query .QueryLookupStrategy ;
25
25
import org .springframework .data .util .Streamable ;
26
26
import org .springframework .lang .Nullable ;
27
+ import org .springframework .util .Assert ;
27
28
28
29
/**
29
30
* Interface containing the configurable options for the Spring Data repository subsystem.
@@ -103,6 +104,31 @@ public interface RepositoryConfigurationSource {
103
104
*/
104
105
Optional <String > getAttribute (String name );
105
106
107
+ /**
108
+ * Returns the value for the attribute with the given name and type. The name is expected to be handed in camel-case.
109
+ *
110
+ * @param name must not be {@literal null} or empty.
111
+ * @param type the type of the attribute to look up.
112
+ * @return the attribute with the given name or {@link Optional#empty()} if not configured or empty.
113
+ * @since 2.2
114
+ */
115
+ <T > Optional <T > getAttribute (String name , Class <T > type );
116
+
117
+ /**
118
+ * Returns the attribute value for the attribute of the given name.
119
+ *
120
+ * @param name must not be {@literal null} or empty.
121
+ * @return the attribute with the given name and type.
122
+ * @since 2.2
123
+ */
124
+ default <T > T getRequiredAttribute (String name , Class <T > type ) {
125
+
126
+ Assert .hasText (name , "Attribute name must not be null or empty!" );
127
+
128
+ return getAttribute (name , type )
129
+ .orElseThrow (() -> new IllegalArgumentException (String .format ("No attribute named %s found!" , name )));
130
+ }
131
+
106
132
/**
107
133
* Returns whether the configuration uses explicit filtering to scan for repository types.
108
134
*
@@ -131,7 +157,7 @@ public interface RepositoryConfigurationSource {
131
157
/**
132
158
* Returns the {@link ImplementationDetectionConfiguration} to be used to scan for custom implementations of the
133
159
* repository instances to be created from this {@link RepositoryConfigurationSource}.
134
- *
160
+ *
135
161
* @param factory
136
162
* @return will never be {@literal null}.
137
163
* @since 2.1
@@ -140,7 +166,7 @@ public interface RepositoryConfigurationSource {
140
166
141
167
/**
142
168
* Defines the repository {@link BootstrapMode} to be used.
143
- *
169
+ *
144
170
* @return
145
171
* @since 2.1
146
172
*/
0 commit comments