@Documented @Retention(value=RUNTIME) @Target(value={TYPE,ANNOTATION_TYPE}) public @interface RestCrud
DtoOf
to generate a CRUD resource on the specified path.Modifier and Type | Optional Element and Description |
---|---|
boolean |
create
Defines if the generated resource should allow creation.
|
boolean |
delete
Defines if the generated resource should allow deletion.
|
boolean |
read
Defines if the generated resource should allow reading.
|
boolean |
update
Defines if the generated resource should allow updating.
|
String |
value
The path the CRUD resource should be exposed on.
|
public abstract boolean create
public abstract boolean delete
public abstract boolean read
public abstract boolean update
public abstract String value
Copyright © 2013-2018–2019 SeedStack. All rights reserved.