public @interface Handler
Modifier and Type | Required Element and Description |
---|---|
boolean |
mvccSupported
Whether MVCC style requests are supported.
|
Modifier and Type | Optional Element and Description |
---|---|
String |
description
Service description, for documentation purposes.
|
String |
id
The service identifier.
|
Parameter[] |
parameters
Parameters on service paths and/or endpoints.
|
Schema |
resourceSchema
The schema for all the standard resource operations (CRUDPQ) on this endpoint.
|
String |
title
Service title, for documentation purposes.
|
public abstract boolean mvccSupported
public abstract String id
"services": {
"users:1.0": {
"type": "collection",
"resourceSchema": {
"$ref": "#/definitions/user"
},
...
}
}
"paths": {
"/users": {
"1.0": {
"$ref": "#/services/users:1.0"
},
}
}
public abstract Schema resourceSchema
public abstract String title
public abstract String description
public abstract Parameter[] parameters
Copyright © 2010-2018, ForgeRock All Rights Reserved.