Commit f4609d3 1 parent da03b2a commit f4609d3 Copy full SHA for f4609d3
File tree 36 files changed +810
-1
lines changed
hibernate-jpa/src/main/java/io/micronaut/configuration/hibernate/jpa
jdbc-dbcp/src/main/java/io/micronaut/configuration/jdbc/dbcp/metadata
jdbc-tomcat/src/main/java/io/micronaut/configuration/jdbc/tomcat/metadata
kafka-streams/src/main/java/io/micronaut/configuration/kafka/streams
micrometer-core/src/main/java/io/micronaut/configuration/metrics/binder
core/src/main/java/io/micronaut/core
discovery-client/src/main/java/io/micronaut/discovery/aws
graal/src/main/java/io/micronaut/graal/reflect
http-netty/src/main/java/io/micronaut/http/netty/websocket
http-server/src/main/java/io/micronaut/http/server/context
http-server-netty/src/main/java/io/micronaut/http/server/netty
jdbc/src/main/java/io/micronaut/jdbc/metadata
management/src/main/java/io/micronaut/management/endpoint
messaging/src/main/java/io/micronaut/messaging
runtime/src/main/java/io/micronaut
security/src/main/java/io/micronaut/security/token/propagation
security-jwt/src/main/java/io/micronaut/security/token/jwt/validator
spring/src/main/java/io/micronaut/spring
views/src/main/java/io/micronaut/views/exceptions
36 files changed +810
-1
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Classes related to tracking metrics for Hibernate.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .configuration .hibernate .jpa .metrics ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Classes related to the {@link io.micronaut.configuration.hibernate.jpa.scope.CurrentSession} scope.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .configuration .hibernate .jpa .scope ;
Original file line number Diff line number Diff line change 28
28
/**
29
29
* {@link io.micronaut.jdbc.metadata.DataSourcePoolMetadata} for a DBCP {@link BasicDataSource}.
30
30
*
31
+ * NOTICE: Forked from Spring Boot.
32
+ *
31
33
* @author Stephane Nicoll
32
34
* @author Christian Oestreich
33
35
* @since 1.0.0
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Contains classes for reading JDBC metadata for DBCP.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .configuration .jdbc .dbcp .metadata ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Contains classes for reading JDBC metadata for Tomcat.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .configuration .jdbc .tomcat .metadata ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Contains classes that integrate Micronaut and Kafka Streams.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .configuration .kafka .streams ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Contains classes that binds metrics Micronaut's re-packaged version of Caffeine.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .configuration .metrics .binder .cache ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Contains classes that bind metrics for configured JDBC data sources.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .configuration .metrics .binder .datasource ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Contains classes that bind metrics for configured {@link java.util.concurrent.ExecutorService} beans.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .configuration .metrics .binder .executor ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Exceptions that occur during data binding.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .core .bind .exceptions ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Common exception handling classes.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .core .exceptions ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Integration with AWS ParameterStore.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .discovery .aws .parameterstore ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Integration with AWS Route53.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .discovery .aws .route53 .client ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Integration with AWS Route53.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .discovery .aws .route53 ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Integration with AWS Route53.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .discovery .aws .route53 .registration ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Utilities for use with GraalVM native image.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .graal .reflect ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2017-2018 original authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * Netty specific classes for WebSocket.
19
+ *
20
+ * @author graemerocher
21
+ * @since 1.0
22
+ */
23
+ package io .micronaut .http .netty .websocket ;
You can’t perform that action at this time.
0 commit comments