### Start Node Protocol
Source: https://github.com/alibaba/compileflow/wiki/协议详解
Defines the starting point of a process. Includes transitions to the next node using the 'to' attribute.
```xml
```
--------------------------------
### ProcessEngine.admin
Source: https://github.com/alibaba/compileflow/blob/master/docs/en/api-reference.md
Gets the administration service, used for deploying and warming up processes.
```APIDOC
## `ProcessEngine.admin()`
### Description
Gets the administration service, used for deploying and warming up processes.
### Method
```java
ProcessAdminService admin();
```
```
--------------------------------
### ProcessEngine.execute
Source: https://github.com/alibaba/compileflow/blob/master/docs/en/api-reference.md
Executes a stateless process from start to finish. This is the most common execution method.
```APIDOC
## `ProcessEngine.execute` (for Stateless Processes)
### Description
Used to execute a stateless process from start to finish. This is the most common execution method.
### Method
```java
// Method 1: Type-Safe DTOs
ProcessResult execute(ProcessSource source, I input, Class outputType);
// Method 2: Flexible Map
ProcessResult