forked from AOT-Technologies/forms-flow-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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 <[email protected]> Co-authored-by: abhilash-aot <[email protected]>
- Loading branch information
1 parent
aaee900
commit 160ebbc
Showing
125 changed files
with
302 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,8 @@ | |
import org.camunda.bpm.extension.commons.connector.support.IAccessHandler; | ||
|
||
/** | ||
* Access Handler Factory. | ||
* Factory Definition for getting appropriate access handlers based on the service id. | ||
* | ||
* @author [email protected] | ||
*/ | ||
public interface AccessHandlerFactory { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,8 @@ | |
import java.util.logging.Logger; | ||
|
||
/** | ||
* This class prepares the payload and invokes the respective access handler based on the service ID. | ||
* | ||
* @author [email protected] | ||
* Http Service Invoker. | ||
* This class prepares the payload and invokes the respective access handler based on the service ID. | ||
*/ | ||
@Component("httpServiceInvoker") | ||
public class HTTPServiceInvoker { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
...low-bpm/src/main/java/org/camunda/bpm/extension/commons/connector/auth/FormioContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,8 @@ | |
|
||
|
||
/** | ||
* Application Access Handler. | ||
* This class serves as gateway for all application service interactions. | ||
* | ||
* @author [email protected] | ||
* @author Shibin Thomas | ||
*/ | ||
@Service("applicationAccessHandler") | ||
public class ApplicationAccessHandler implements IAccessHandler { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,8 @@ | |
|
||
|
||
/** | ||
* Form Access Handler. | ||
* This class serves as gateway for all formio interactions. | ||
* | ||
* @author [email protected] | ||
*/ | ||
@Service("formAccessHandler") | ||
public class FormAccessHandler extends FormTokenAccessHandler implements IAccessHandler { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,8 @@ | |
|
||
|
||
/** | ||
* Form Token Access Handler. | ||
* This class abstracts formio token generation logic with the intent to cached & refreshed accordingly. | ||
* @author [email protected] | ||
* @author [email protected] | ||
*/ | ||
@Service("formTokenAccessHandler") | ||
public class FormTokenAccessHandler { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,8 @@ | |
import org.springframework.http.ResponseEntity; | ||
|
||
/** | ||
* IAccess Handler. | ||
* This class defines the AccessHandler implementation. | ||
* | ||
* @author [email protected] | ||
* @author Shibin Thomas | ||
*/ | ||
public interface IAccessHandler { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...m/src/main/java/org/camunda/bpm/extension/commons/exceptions/FormioIdentityException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,8 @@ | |
|
||
|
||
/** | ||
* Camunda Event Listener. | ||
* This class intercepts all camunda task and push socket messages for web tier updates. | ||
* | ||
* @author [email protected] | ||
*/ | ||
@Component | ||
public class CamundaEventListener { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,9 +11,8 @@ | |
import java.util.logging.Logger; | ||
|
||
/** | ||
* Web Socket Config. | ||
* This class serves the purpose of exposing socket connection for push notifications to & from camunda. | ||
* | ||
* @author [email protected] | ||
*/ | ||
@Configuration | ||
@EnableWebSocketMessageBroker | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,8 @@ | |
import java.util.Map; | ||
|
||
/** | ||
* Transfer object for task | ||
* | ||
* @author [email protected] | ||
* Task Message. | ||
* Class for holding Task data. | ||
*/ | ||
@Data | ||
@NoArgsConstructor | ||
|
4 changes: 4 additions & 0 deletions
4
forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/ro/req/IRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
package org.camunda.bpm.extension.commons.ro.req; | ||
|
||
/** | ||
* IRequest. | ||
* This class defines the Request implementation. | ||
*/ | ||
public interface IRequest { | ||
} |
4 changes: 4 additions & 0 deletions
4
forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/ro/res/IResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
package org.camunda.bpm.extension.commons.ro.res; | ||
|
||
/** | ||
* IResponse. | ||
* This class defines the Response implementation. | ||
*/ | ||
public interface IResponse { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
forms-flow-bpm/src/main/java/org/camunda/bpm/extension/commons/utils/VariableConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,9 +56,8 @@ | |
import net.minidev.json.JSONArray; | ||
|
||
/** | ||
* Admin Controller. | ||
* This class assist with admin operations of formsflow.ai: Giving all authorized form details | ||
* | ||
* @author [email protected] | ||
*/ | ||
@Controller | ||
public class AdminController { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,9 +29,8 @@ | |
import java.util.logging.Logger; | ||
|
||
/** | ||
* Task Controller. | ||
* This class list all task from history tables of camunda. | ||
* | ||
* @author [email protected] | ||
*/ | ||
@Deprecated | ||
@Controller | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,8 @@ | |
import java.util.logging.Logger; | ||
|
||
/** | ||
* This class transforms all the form document data into CAM variables | ||
* | ||
* @author [email protected] | ||
* Form Document Transformer. | ||
* This class transforms all the form document data into CAM variables. | ||
*/ | ||
@Component | ||
public class FormDocumentTransformer implements JavaDelegate { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.