Class JPAMacroTaskCommand
- java.lang.Object
-
- org.apache.syncope.core.persistence.jpa.entity.AbstractEntity
-
- org.apache.syncope.core.persistence.jpa.entity.AbstractGeneratedKeyEntity
-
- org.apache.syncope.core.persistence.jpa.entity.task.JPAMacroTaskCommand
-
- All Implemented Interfaces:
Serializable
,Entity
,MacroTaskCommand
@Entity public class JPAMacroTaskCommand extends AbstractGeneratedKeyEntity implements MacroTaskCommand
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
TABLE
-
Fields inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractEntity
LOG
-
Fields inherited from interface org.apache.syncope.core.persistence.api.entity.Entity
EMAIL_PATTERN, ID_PATTERN, ID_REGEX
-
-
Constructor Summary
Constructors Constructor Description JPAMacroTaskCommand()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CommandArgs
getArgs()
Implementation
getCommand()
JPAMacroTask
getMacroTask()
void
setArgs(CommandArgs args)
void
setCommand(Implementation command)
void
setIdx(int idx)
void
setMacroTask(MacroTask macroTask)
-
Methods inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractGeneratedKeyEntity
getKey, setKey
-
Methods inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractEntity
checkImplementationType, checkType, equals, hashCode, toString
-
-
-
-
Field Detail
-
TABLE
public static final String TABLE
- See Also:
- Constant Field Values
-
-
Method Detail
-
setIdx
public void setIdx(int idx)
-
getMacroTask
public JPAMacroTask getMacroTask()
- Specified by:
getMacroTask
in interfaceMacroTaskCommand
-
setMacroTask
public void setMacroTask(MacroTask macroTask)
- Specified by:
setMacroTask
in interfaceMacroTaskCommand
-
getCommand
public Implementation getCommand()
- Specified by:
getCommand
in interfaceMacroTaskCommand
-
setCommand
public void setCommand(Implementation command)
- Specified by:
setCommand
in interfaceMacroTaskCommand
-
getArgs
public CommandArgs getArgs()
- Specified by:
getArgs
in interfaceMacroTaskCommand
-
setArgs
public void setArgs(CommandArgs args)
- Specified by:
setArgs
in interfaceMacroTaskCommand
-
-