Skip to content

Commit 9ba5cf1

Browse files
committed
[java-pkmst-microservice] fix generated javadoc
1 parent 76ff7ff commit 9ba5cf1

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

modules/openapi-generator/src/main/resources/java-pkmst/config/appconfig.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public class AppConfig extends WebMvcConfigurerAdapter {
8787
* .exposedHeaders("header1", "header2")
8888
* .allowCredentials(false).maxAge(3600);
8989
*
90-
* @return
90+
* @return a new WebMvcConfigurer instance
9191
*/
9292
@Bean
9393
public WebMvcConfigurer corsConfigurer() {

modules/openapi-generator/src/main/resources/java-pkmst/security/oAuth2SecurityConfiguration.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import org.springframework.security.oauth2.provider.request.DefaultOAuth2Request
1818
import org.springframework.security.oauth2.provider.token.TokenStore;
1919
import org.springframework.security.oauth2.provider.token.store.InMemoryTokenStore;
2020
/**
21-
* Provides a convenient base class for creating a {@link WebSecurityConfigurer}
21+
* Provides a convenient base class for creating a WebSecurityConfigurer
2222
* instance. The implementation allows customization by overriding methods.
2323
*
2424
* @see EnableWebSecurity

modules/openapi-generator/src/main/resources/java-pkmst/security/resourceServerConfiguration.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import org.springframework.http.HttpMethod;
1010
/**
1111
* Configurer class for <code>@EnableResourceServer</code> classes. This class adjust the access
1212
* rules and paths that are protected by OAuth2 security. If more than one configures the same property, then the last
13-
* one wins. The configurers are sorted by {@link Order} before being applied.
13+
* one wins. The configurers are sorted by Order before being applied.
1414
*
1515
* @author pkmst
1616
*

samples/server/petstore/java-pkmst/src/main/java/com/prokarma/pkmst/config/AppConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class AppConfig extends WebMvcConfigurerAdapter {
2020
* .exposedHeaders("header1", "header2")
2121
* .allowCredentials(false).maxAge(3600);
2222
*
23-
* @return
23+
* @return a new WebMvcConfigurer instance
2424
*/
2525
@Bean
2626
public WebMvcConfigurer corsConfigurer() {

samples/server/petstore/java-pkmst/src/main/java/com/prokarma/pkmst/security/OAuth2SecurityConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import org.springframework.security.oauth2.provider.token.TokenStore;
1919
import org.springframework.security.oauth2.provider.token.store.InMemoryTokenStore;
2020
/**
21-
* Provides a convenient base class for creating a {@link WebSecurityConfigurer}
21+
* Provides a convenient base class for creating a WebSecurityConfigurer
2222
* instance. The implementation allows customization by overriding methods.
2323
*
2424
* @see EnableWebSecurity

samples/server/petstore/java-pkmst/src/main/java/com/prokarma/pkmst/security/ResourceServerConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Configurer class for <code>@EnableResourceServer</code> classes. This class adjust the access
1212
* rules and paths that are protected by OAuth2 security. If more than one configures the same property, then the last
13-
* one wins. The configurers are sorted by {@link Order} before being applied.
13+
* one wins. The configurers are sorted by Order before being applied.
1414
*
1515
* @author pkmst
1616
*

0 commit comments

Comments
 (0)