Class ExecSpecs
- java.lang.Object
-
- org.apache.syncope.common.rest.api.beans.ExecSpecs
-
- All Implemented Interfaces:
Serializable
public class ExecSpecs extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ExecSpecs.Builder
-
Constructor Summary
Constructors Constructor Description ExecSpecs()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
getDryRun()
String
getKey()
OffsetDateTime
getStartAt()
void
setDryRun(Boolean dryRun)
void
setKey(String key)
void
setStartAt(OffsetDateTime startAt)
-
-
-
Method Detail
-
getKey
public String getKey()
-
setKey
@NotNull @PathParam("key") public void setKey(String key)
-
getStartAt
public OffsetDateTime getStartAt()
-
setStartAt
@QueryParam("startAt") public void setStartAt(OffsetDateTime startAt)
-
getDryRun
public Boolean getDryRun()
-
setDryRun
@QueryParam("dryRun") @DefaultValue("false") public void setDryRun(Boolean dryRun)
-
-