Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

State Machine Description #290

Open
zdne opened this issue Dec 10, 2015 · 1 comment
Open

State Machine Description #290

zdne opened this issue Dec 10, 2015 · 1 comment

Comments

@zdne
Copy link
Contributor

zdne commented Dec 10, 2015

Following the Resource Blueprint Concept the API Blueprint should offer description of the API state machine.

This will benefit both the conceptual design of an API and the testing of its implementation. Enabling next generation of tools such as powerful mocks or implementation generators.

If an API client is following the REST principles it is essential that it does not utilize any knowledge of the state machine as that should be driven completely by the server (HATEOAS).

# Resource Blog Post
- attributes

## Action Retrieve Blog Post
- relation: list (self)

## Action Edit Blog Post
- relation: edit

## Action Archive Blog Post
- relation: archive 

## Action Unarchive Blog Post
- relation: unarchive 

## States
- active
   - Affordances
       - list -> active
       - edit -> active
       - archive -> archived

- archived
    - Affordances
        - list -> archived
        - unarchive -> active

See the Resource Blueprint concept for details on the possible design of this feature.

Related issue #13

@pksunkara
Copy link
Contributor

I know it is just a sketch but something like this would be better:

- archived
    - Affordances
        - list: archived
        - unarchive: active

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants