> For the complete documentation index, see [llms.txt](https://www.pranaypourkar.co.in/the-programmers-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.pranaypourkar.co.in/the-programmers-guide/system-design/system-design-methodology/diagrams/uml-diagrams/plantuml/state-diagram.md).

# State Diagram

## About

A **State Diagram** represents an object's **lifecycle states** and transitions between them based on **events or conditions**. It helps model **real-world behaviour** of objects.

{% hint style="success" %}
Refer to the official documentation for more details - <https://plantuml.com/state-diagram>
{% endhint %}

### **Key Elements**

1. **States**&#x20;
   * Represented as **rounded rectangles** (e.g., "Idle", "Processing").
2. **Transitions**&#x20;
   * Arrows indicating **state changes due to events**.
3. **Initial & Final States**&#x20;
   * **Black circle (initial state)** marks the starting point.
   * **Encircled black dot (final state)** indicates the end.
4. **Events & Conditions**&#x20;
   * Triggers for transitions (e.g., "User logs in").

## 1. User Authentication Flow

This represents a **User Authentication Flow** in a system.

{% hint style="success" %}

* **Initial State (`[*]`)** and **Transitions (`-->`)**.
* **Different States (`StateName`)**: `LoggedOut`, `LoggingIn`, etc.
* **Looping (`Retry`)**: Allows reattempting login.
  {% endhint %}

```plant-uml
@startuml
title User Authentication - State Diagram

[*] --> LoggedOut

LoggedOut --> LoggingIn : User enters credentials
LoggingIn --> LoggedIn : Authentication Success
LoggingIn --> LoginFailed : Authentication Failed

LoginFailed --> LoggedOut : Retry
LoggedIn --> LoggedOut : User Logs Out
LoggedIn --> SessionExpired : Inactivity Timeout

SessionExpired --> LoggedOut

@enduml
```

<figure><img src="/files/kU5TA2RXeAFNSUlZeAjX" alt="" width="516"><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://www.pranaypourkar.co.in/the-programmers-guide/system-design/system-design-methodology/diagrams/uml-diagrams/plantuml/state-diagram.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
