We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53f6737 commit 96007dfCopy full SHA for 96007df
modules/spectoconfig/src/main/java/com/axway/apim/config/GenerateTemplate.java
@@ -345,10 +345,10 @@ public SecurityProfile createPassThroughSecurityProfile() {
345
346
public SecurityProfile createOauthSecurityProfile(String operationId, List<String> scopes) {
347
SecurityProfile profile = new SecurityProfile();
348
- profile.setName("Oauth2");
+ profile.setName("Oauth2 " + operationId);
349
profile.setIsDefault(false);
350
SecurityDevice securityDevice = new SecurityDevice();
351
- securityDevice.setName("Oauth2 " + operationId);
+ securityDevice.setName("Oauth2");
352
securityDevice.setType(DeviceType.oauth);
353
securityDevice.setOrder(0);
354
Map<String, String> properties = new HashMap<>();
0 commit comments