Skip to content

Commit 160ebbc

Browse files
ambadi-aotalanraju-aotabhilash-aot
authored
Fwf 1383 (#3)
* Delete installationAutomation.bat * Removed author label from classes and included comments above each class to indicate its functionality. * Remove author label from classes and include comments above each class to indicate its functionality Co-authored-by: Alan Raju <94040192+alanraju-aot@users.noreply.github.com> Co-authored-by: abhilash-aot <abhilash.kr@aot-technologies.com>
1 parent aaee900 commit 160ebbc

125 files changed

Lines changed: 302 additions & 132 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

forms-flow-bpm/src/main/java/org/camunda/bpm/extension/CamundaApplication.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424

2525
/**
26+
* Camunda Application.
2627
* The Camunda Showcase Spring Boot application.
2728
*/
2829
@EnableConfigurationProperties

forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/config/AppConfig.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010

1111
import javax.annotation.PostConstruct;
1212

13+
/**
14+
* AppConfig
15+
* Configuration data for API.
16+
*/
17+
1318
@Configuration
1419
public class AppConfig {
1520

forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/connector/AccessHandlerFactory.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
import org.camunda.bpm.extension.commons.connector.support.IAccessHandler;
55

66
/**
7+
* Access Handler Factory.
78
* Factory Definition for getting appropriate access handlers based on the service id.
8-
*
9-
* @author sumathi.thirumani@aot-technologies.com
109
*/
1110
public interface AccessHandlerFactory {
1211

forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/connector/HTTPServiceInvoker.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@
1616
import java.util.logging.Logger;
1717

1818
/**
19-
* This class prepares the payload and invokes the respective access handler based on the service ID.
20-
*
21-
* @author sumathi.thirumani@aot-technologies.com
19+
* Http Service Invoker.
20+
* This class prepares the payload and invokes the respective access handler based on the service ID.
2221
*/
2322
@Component("httpServiceInvoker")
2423
public class HTTPServiceInvoker {

forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/connector/auth/FormioConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import lombok.Data;
55

66
/**
7-
* Configuration data for formio
8-
* @author Shibin Thomas
7+
* Formio Configuration.
8+
* Configuration data for formio.
99
*/
1010
@Data
1111
@AllArgsConstructor

forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/connector/auth/FormioContext.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package org.camunda.bpm.extension.commons.connector.auth;
22

33
/**
4-
* Formio context holding access token.
5-
*
6-
* @author Shibin Thomas
4+
* Formio Context.
5+
* Class for holding and transferring access token data.
76
*/
87
public class FormioContext {
98

forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/connector/auth/FormioContextProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
/**
19-
* Formio context provider.
19+
* Formio Context Provider.
2020
* Manages access tokens for then Formio REST API.
2121
*/
2222
public class FormioContextProvider {

forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/connector/support/ApplicationAccessHandler.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@
1717

1818

1919
/**
20+
* Application Access Handler.
2021
* This class serves as gateway for all application service interactions.
21-
*
22-
* @author sumathi.thirumani@aot-technologies.com
23-
* @author Shibin Thomas
2422
*/
2523
@Service("applicationAccessHandler")
2624
public class ApplicationAccessHandler implements IAccessHandler {

forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/connector/support/FormAccessHandler.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717

1818

1919
/**
20+
* Form Access Handler.
2021
* This class serves as gateway for all formio interactions.
21-
*
22-
* @author sumathi.thirumani@aot-technologies.com
2322
*/
2423
@Service("formAccessHandler")
2524
public class FormAccessHandler extends FormTokenAccessHandler implements IAccessHandler {

forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/connector/support/FormTokenAccessHandler.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@
1515

1616

1717
/**
18+
* Form Token Access Handler.
1819
* This class abstracts formio token generation logic with the intent to cached & refreshed accordingly.
19-
* @author sumathi.thirumani@aot-technologies.com
20-
* @author shibin.thoma@aot-technologies.com
2120
*/
2221
@Service("formTokenAccessHandler")
2322
public class FormTokenAccessHandler {

0 commit comments

Comments
 (0)