<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Custom task in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/custom-task/m-p/13924#M5917</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In my project, I need to create a custom task. It is like user task but I need to add a few attributes and persist those attributes. How can I do this??&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Mar 2011 13:33:01 GMT</pubDate>
    <dc:creator>ahmetkara</dc:creator>
    <dc:date>2011-03-15T13:33:01Z</dc:date>
    <item>
      <title>Custom task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/custom-task/m-p/13924#M5917</link>
      <description>In my project, I need to create a custom task. It is like user task but I need to add a few attributes and persist those attributes. How can I do this??Thanks…</description>
      <pubDate>Tue, 15 Mar 2011 13:33:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/custom-task/m-p/13924#M5917</guid>
      <dc:creator>ahmetkara</dc:creator>
      <dc:date>2011-03-15T13:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Custom task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/custom-task/m-p/13925#M5918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can use task local variables for this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&lt;BR /&gt;public interface TaskService {&lt;BR /&gt;…&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; /** get a variables and only search in the task scope.&amp;nbsp; */&lt;BR /&gt;&amp;nbsp; Object getVariableLocal(String taskId, String variableName);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; /** get a variable on a task */&lt;BR /&gt;&amp;nbsp; Map&amp;lt;String, Object&amp;gt; getVariablesLocal(String taskId, Collection&amp;lt;String&amp;gt; variableNames);&lt;BR /&gt;&lt;BR /&gt;…&lt;BR /&gt;&lt;BR /&gt; /** set variable on a task.&amp;nbsp; If the variable is not already existing, it will be created in the &lt;BR /&gt;&amp;nbsp;&amp;nbsp; * task.&amp;nbsp; */&lt;BR /&gt;&amp;nbsp; void setVariableLocal(String taskId, String variableName, Object value);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; /** set variables on a task.&amp;nbsp; If the variable is not already existing, it will be created in the &lt;BR /&gt;&amp;nbsp;&amp;nbsp; * task.&amp;nbsp; */&lt;BR /&gt;&amp;nbsp; void setVariablesLocal(String taskId, Map&amp;lt;String, ? extends Object&amp;gt; variables);&lt;BR /&gt;&lt;/CODE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 10:01:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/custom-task/m-p/13925#M5918</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2011-03-16T10:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Custom task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/custom-task/m-p/13926#M5919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&amp;nbsp; Frederik,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your reply, I will consider your recommendation but I need something different. For some tasks (they will be service tasks) I will direct them to a class and execute a certain method, so I thought, If I can make it like a special task, other developers will use it with just some parameters, is it possible like this thing?? Also I need to add that new task to modeler palette.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thankss..&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Mar 2011 13:33:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/custom-task/m-p/13926#M5919</guid>
      <dc:creator>ahmetkara</dc:creator>
      <dc:date>2011-03-17T13:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Custom task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/custom-task/m-p/13927#M5920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Both requirements are supported. You can just implement your own class (implementing JavaDelegate), and pass properties to it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The Activiti Designer can discover those special tasks, by adding some annotation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Check the userguide, both are documented in detail there.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 16:40:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/custom-task/m-p/13927#M5920</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2011-03-21T16:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Custom task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/custom-task/m-p/13928#M5921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Tnahks Joram&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 20:42:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/custom-task/m-p/13928#M5921</guid>
      <dc:creator>ahmetkara</dc:creator>
      <dc:date>2011-03-21T20:42:27Z</dc:date>
    </item>
  </channel>
</rss>

