Class GetPlatformUserInfoCmd<T>

  • All Implemented Interfaces:
    java.io.Serializable, org.flowable.common.engine.impl.interceptor.Command<java.util.Optional<T>>

    public class GetPlatformUserInfoCmd<T>
    extends java.lang.Object
    implements org.flowable.common.engine.impl.interceptor.Command<java.util.Optional<T>>, java.io.Serializable
    Author:
    Tijs Rademakers
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.Class<T> infoClass  
      protected java.lang.String name  
      protected java.lang.String userId  
    • Constructor Summary

      Constructors 
      Constructor Description
      GetPlatformUserInfoCmd​(java.lang.String userId, java.lang.String name, java.lang.Class<T> infoClass)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Optional<T> execute​(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • userId

        protected java.lang.String userId
      • name

        protected java.lang.String name
      • infoClass

        protected java.lang.Class<T> infoClass
    • Constructor Detail

      • GetPlatformUserInfoCmd

        public GetPlatformUserInfoCmd​(java.lang.String userId,
                                      java.lang.String name,
                                      java.lang.Class<T> infoClass)
    • Method Detail

      • execute

        public java.util.Optional<T> execute​(org.flowable.common.engine.impl.interceptor.CommandContext commandContext)
        Specified by:
        execute in interface org.flowable.common.engine.impl.interceptor.Command<T>