Skip to content

Commit

Permalink
INT-3330 Fix JDK8 Javadoc Violations
Browse files Browse the repository at this point in the history
  • Loading branch information
garyrussell committed Mar 27, 2014
1 parent e9337a4 commit 5587d79
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* bean is defined under the name {@code integrationMbeanExporter}. Alternatively, consider defining a
* custom {@link org.springframework.integration.monitor.IntegrationMBeanExporter} bean explicitly.
*
* <p>This annotation is modeled after and functionally equivalent to Spring XML's
* <p>This annotation is modeled after and functionally equivalent to Spring Integration XML's
* {@code <int-jmx:mbean-export/>} element.
*
* @author Artem Bilan
Expand All @@ -47,22 +47,25 @@

/**
* The default domain to use when generating JMX ObjectNames.
* Supports property placeholders (e.g. {@code ${project.domain}).
* Supports property placeholders (e.g. {@code ${project.domain}}).
* @return the domain.
*/
String defaultDomain() default "";

/**
* The bean name of the MBeanServer to which MBeans should be exported. Default is to
* use the platform's default MBeanServer.
* Supports property placeholders (e.g. {@code ${project.mbeanServer})
* and SpEL expression (e.g. {@code #{mbeanServer}).
* Supports property placeholders (e.g. {@code ${project.mbeanServer}})
* and SpEL expression (e.g. {@code #{mbeanServer}}).
* @return the server.
*/
String server() default "";

/**
* The policy to use when attempting to register an MBean under an
* {@link javax.management.ObjectName} that already exists. Defaults to
* {@link org.springframework.jmx.support.RegistrationPolicy#FAIL_ON_EXISTING}.
* @return the registration policy.
*/
RegistrationPolicy registration() default RegistrationPolicy.FAIL_ON_EXISTING;

Expand All @@ -72,7 +75,8 @@
* the 'name' property of the ObjectName. A MessageChannel and a MessageHandler (for instance)
* can share a name because they have a different type, so in that case they would either both
* be included or both excluded.
* Supports property placeholders (e.g. {@code ${managed.components}). Can be applied for each element.
* Supports property placeholders (e.g. {@code ${managed.components}}). Can be applied for each element.
* @return the patterns.
*/
String[] managedComponents() default "*";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

/**
* {@code @Configuration} class that registers a {@link IntegrationMBeanExporter} bean.
* <p/>
*
* <p>This configuration class is automatically imported when using the
* {@link EnableIntegrationMBeanExport} annotation. See its javadoc for complete usage details.
*
Expand Down

0 comments on commit 5587d79

Please sign in to comment.