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 StringTABLE-
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 CommandArgsgetArgs()ImplementationgetCommand()JPAMacroTaskgetMacroTask()voidsetArgs(CommandArgs args)voidsetCommand(Implementation command)voidsetIdx(int idx)voidsetMacroTask(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:
getMacroTaskin interfaceMacroTaskCommand
-
setMacroTask
public void setMacroTask(MacroTask macroTask)
- Specified by:
setMacroTaskin interfaceMacroTaskCommand
-
getCommand
public Implementation getCommand()
- Specified by:
getCommandin interfaceMacroTaskCommand
-
setCommand
public void setCommand(Implementation command)
- Specified by:
setCommandin interfaceMacroTaskCommand
-
getArgs
public CommandArgs getArgs()
- Specified by:
getArgsin interfaceMacroTaskCommand
-
setArgs
public void setArgs(CommandArgs args)
- Specified by:
setArgsin interfaceMacroTaskCommand
-
-