File tree Expand file tree Collapse file tree 3 files changed +14
-13
lines changed
spring-tx/src/main/java/org/springframework/transaction
spring-webflux/src/main/java/org/springframework/web/reactive/function Expand file tree Collapse file tree 3 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2018 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
41
41
* @since 16.05.2003
42
42
* @see org.springframework.transaction.support.TransactionTemplate
43
43
* @see org.springframework.transaction.interceptor.TransactionInterceptor
44
- * @see org.springframework.transaction.interceptor.TransactionProxyFactoryBean
45
44
*/
46
45
public interface PlatformTransactionManager {
47
46
@@ -68,7 +67,8 @@ public interface PlatformTransactionManager {
68
67
* @see TransactionDefinition#getTimeout
69
68
* @see TransactionDefinition#isReadOnly
70
69
*/
71
- TransactionStatus getTransaction (@ Nullable TransactionDefinition definition ) throws TransactionException ;
70
+ TransactionStatus getTransaction (@ Nullable TransactionDefinition definition )
71
+ throws TransactionException ;
72
72
73
73
/**
74
74
* Commit the given transaction, with regard to its status. If the transaction
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2018 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -37,18 +37,18 @@ public interface ExchangeStrategies {
37
37
38
38
/**
39
39
* Return {@link HttpMessageReader HttpMessageReaders} to read and decode the response body with.
40
- * @return the stream of message readers
40
+ * @return the message readers
41
41
*/
42
42
List <HttpMessageReader <?>> messageReaders ();
43
43
44
44
/**
45
45
* Return {@link HttpMessageWriter HttpMessageWriters} to write and encode the request body with.
46
- * @return the stream of message writers
46
+ * @return the message writers
47
47
*/
48
48
List <HttpMessageWriter <?>> messageWriters ();
49
49
50
50
51
- // Static methods
51
+ // Static builder methods
52
52
53
53
/**
54
54
* Return a new {@code ExchangeStrategies} with default configuration
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2018 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
28
28
import org .springframework .web .server .i18n .LocaleContextResolver ;
29
29
30
30
/**
31
- * Defines the strategies to be used for processing {@link HandlerFunction HandlerFunctions}. An instance of
32
- * this class is immutable; instances are typically created through the mutable {@link Builder}:
33
- * either through {@link #builder()} to set up default strategies, or {@link #empty()} to start from
34
- * scratch.
31
+ * Defines the strategies to be used for processing {@link HandlerFunction HandlerFunctions}.
32
+ *
33
+ * <p>An instance of this class is immutable. Instances are typically created through the
34
+ * mutable {@link Builder}: either through {@link #builder()} to set up default strategies,
35
+ * or {@link #empty()} to start from scratch.
35
36
*
36
37
* @author Arjen Poutsma
37
38
* @author Juergen Hoeller
@@ -78,7 +79,7 @@ public interface HandlerStrategies {
78
79
LocaleContextResolver localeContextResolver ();
79
80
80
81
81
- // Static methods
82
+ // Static builder methods
82
83
83
84
/**
84
85
* Return a new {@code HandlerStrategies} with default initialization.
You can’t perform that action at this time.
0 commit comments