<?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 Re: Task Priority values in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147874#M103219</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Deprecated the constants and moved to explorer:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/Activiti/Activiti/commit/fb5caea787457032c66039113350a84eaf67b274" rel="nofollow noopener noreferrer"&gt;https://github.com/Activiti/Activiti/commit/fb5caea787457032c66039113350a84eaf67b274&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Mar 2013 09:27:01 GMT</pubDate>
    <dc:creator>frederikherema1</dc:creator>
    <dc:date>2013-03-01T09:27:01Z</dc:date>
    <item>
      <title>Task Priority values</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147870#M103215</link>
      <description>Is there a reason why the Java comments state that Task Priority is limited to the range of [0,100]?&amp;nbsp; As far as I can tell, it's only used for querying, and it looks like any integer value is supported from a persistence standpoint and query perspective.&amp;nbsp; I also looked for usages of Task.PRIORITY_MI</description>
      <pubDate>Thu, 28 Feb 2013 19:13:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147870#M103215</guid>
      <dc:creator>brianshowers</dc:creator>
      <dc:date>2013-02-28T19:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Task Priority values</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147871#M103216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No, it is indeed not checked or anything. You can pass whatever you want.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2013 19:32:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147871#M103216</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-02-28T19:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Task Priority values</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147872#M103217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Would you consider removing the doc references to the [0,100] range in the 5.12 release?&amp;nbsp; I'm a bit nervous about building functionality that explicitly violates the API contract.&amp;nbsp; If I start doing that, and some later Activiti release starts to enforce the [0,100] limit, I'll be the one who is out of compliance.&amp;nbsp; If the next version of Activiti will make support for arbitrary integer values explicit, I'll feel a lot better that I'm not coloring outside of the lines.&amp;nbsp; &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you're ok with that, I'll open a Jira issue.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2013 19:37:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147872#M103217</guid>
      <dc:creator>brianshowers</dc:creator>
      <dc:date>2013-02-28T19:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Task Priority values</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147873#M103218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The values are actually used:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt; public int getPriority() {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; String value = getValue().toString();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (i18nManager.getMessage(Messages.TASK_PRIORITY_LOW).equals(value)) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return Task.PRIORITY_MINIUM;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if (i18nManager.getMessage(Messages.TASK_PRIORITY_MEDIUM).equals(value)) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return Task.PRIORITY_NORMAL;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return Task.PRIORITY_MAXIMUM;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;There isn't any explicit reference in the docs stating that these are minimum and maximum values, but I can understand that it's confusing. I'll see whats the best way to resolve this confusement.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Mar 2013 09:06:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147873#M103218</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-03-01T09:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: Task Priority values</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147874#M103219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Deprecated the constants and moved to explorer:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/Activiti/Activiti/commit/fb5caea787457032c66039113350a84eaf67b274" rel="nofollow noopener noreferrer"&gt;https://github.com/Activiti/Activiti/commit/fb5caea787457032c66039113350a84eaf67b274&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Mar 2013 09:27:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147874#M103219</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-03-01T09:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Task Priority values</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147875#M103220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for making the change!&amp;nbsp; I feel much better about using priority to store values from MIN_INT to MAX_INT now.&amp;nbsp; I had only looked in the engine module when I searched for references.&amp;nbsp; Sorry about that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note that you might also want to remove the reference to the [0,100] range from the javadoc on Task.getPriority() and Task.setPriority().&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Mar 2013 15:19:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147875#M103220</guid>
      <dc:creator>brianshowers</dc:creator>
      <dc:date>2013-03-01T15:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Task Priority values</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147876#M103221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Duely noted, will be fixed in 5.13 (too late for 5.12 now) -&amp;gt; &lt;/SPAN&gt;&lt;A href="http://jira.codehaus.org/browse/ACT-1594" rel="nofollow noopener noreferrer"&gt;http://jira.codehaus.org/browse/ACT-1594&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 14:56:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-priority-values/m-p/147876#M103221</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-03-04T14:56:43Z</dc:date>
    </item>
  </channel>
</rss>

