Browse Source

Polishing

pull/733/head
Juergen Hoeller 10 years ago
parent
commit
230aa07fbb
  1. 1
      spring-beans/src/main/java/org/springframework/beans/MutablePropertyValues.java
  2. 1
      spring-context/src/main/java/org/springframework/jmx/access/MBeanClientInterceptor.java
  3. 8
      spring-messaging/src/main/java/org/springframework/messaging/simp/annotation/support/SimpAnnotationMethodMessageHandler.java

1
spring-beans/src/main/java/org/springframework/beans/MutablePropertyValues.java

@ -263,6 +263,7 @@ public class MutablePropertyValues implements PropertyValues, Serializable { @@ -263,6 +263,7 @@ public class MutablePropertyValues implements PropertyValues, Serializable {
* Get the raw property value, if any.
* @param propertyName the name to search for
* @return the raw property value, or {@code null}
* @since 4.0
* @see #getPropertyValue(String)
* @see PropertyValue#getValue()
*/

1
spring-context/src/main/java/org/springframework/jmx/access/MBeanClientInterceptor.java

@ -604,6 +604,7 @@ public class MBeanClientInterceptor @@ -604,6 +604,7 @@ public class MBeanClientInterceptor
this.connector.close();
}
/**
* Simple wrapper class around a method name and its signature.
* Used as the key when caching methods.

8
spring-messaging/src/main/java/org/springframework/messaging/simp/annotation/support/SimpAnnotationMethodMessageHandler.java

@ -122,11 +122,11 @@ public class SimpAnnotationMethodMessageHandler extends AbstractMethodMessageHan @@ -122,11 +122,11 @@ public class SimpAnnotationMethodMessageHandler extends AbstractMethodMessageHan
this.messageConverter = new CompositeMessageConverter(converters);
}
/**
* Configure a {@link MessageConverter} to use to convert the payload of a message
* from serialize form with a specific MIME type to an Object matching the target
* method parameter. The converter is also used when sending message to the message
* broker.
* Configure a {@link MessageConverter} to use to convert the payload of a message from
* its serialized form with a specific MIME type to an Object matching the target method
* parameter. The converter is also used when sending a message to the message broker.
* @see CompositeMessageConverter
*/
public void setMessageConverter(MessageConverter converter) {

Loading…
Cancel
Save