<?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: subclass of NewUserWizard in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37429#M19812</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Another small question again… &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;SPAN&gt;What is exactly the goal of the function populate()? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Because I realized that I added an attribute d:boolean "ready" that I called in finish() but not in populate() and while entering a value in my person-properties.jsp page I can get it back in my users.jsp page and it appears in the NodeBrowser of Administration Console so why using populate() then?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Feb 2006 15:05:45 GMT</pubDate>
    <dc:creator>soeursourire</dc:creator>
    <dc:date>2006-02-15T15:05:45Z</dc:date>
    <item>
      <title>subclass of NewUserWizard</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37422#M19805</link>
      <description>Hi!I have some trouble with my subclass MyNewUserWizard that extends NewUserWizard. I wanted to use this class in my jsp pages so I replaced #{NewUserWizard.firstName}by #{MyNewUserWizard.firstName}in person-properties.jsp for example.But then when I click on the button finish() I have some error sa</description>
      <pubDate>Mon, 13 Feb 2006 13:15:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37422#M19805</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-13T13:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: subclass of NewUserWizard</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37423#M19806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Have you ensured you have caught all the places where NewUserWizard is used. You'll need to make sure the following places are changed:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- You have a managed bean defined for MyNewUserWizard in the faces config files (copy and paste the NewUserWizard entry and change the bean name)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- The action link on the page the wizard starts from has been changed i.e. on users.jsp….&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;action="createUser" actionListener="&lt;/SPAN&gt;&lt;STRONG&gt;#{MyNewUserWizard.startWizard}&lt;/STRONG&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;action="editUser" actionListener="&lt;/SPAN&gt;&lt;STRONG&gt;#{MyNewUserWizard.startWizardForEdit}&lt;/STRONG&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- All the pages used by the wizard have changed NewUserWizard to MyNewUserWizard&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When you say the Person object has null values, do you mean the person is null or that you have the person but it has no properties? Are you editing or creating with the wizard?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 10:10:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37423#M19806</guid>
      <dc:creator>gavinc</dc:creator>
      <dc:date>2006-02-14T10:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: subclass of NewUserWizard</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37424#M19807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks a lot for your help. Actually I think that my person had no properties. The problem has been resolved by adding some getters setters on services in NewUserWizard. I was using other variable PersonService, PermissionService etc.. and that is why it was not working. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am now looking for adding properties of type int so in my CustomModel I added this property e.g.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;property name="custom&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;ostalCode"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;type&amp;gt;d:int&amp;lt;/type&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/property&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But then I do not know how to get it in the function populate() with the map as this map is using String and not int:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Map&amp;lt;String, Object&amp;gt; props = getPerson().getProperties();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also look if it is possible to add a property of type "ListItem" but it seems that not. And how to add calendar properly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 07:23:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37424#M19807</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-15T07:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: subclass of NewUserWizard</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37425#M19808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The function getProperties return a Map&amp;lt;String, Object&amp;gt; so does that mean that there is no way to return a Map&amp;lt;int,Object&amp;gt;? How do you manage the properties of type that are int then?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 08:51:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37425#M19808</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-15T08:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: subclass of NewUserWizard</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37426#M19809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The String is the property name i.e. "custom&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;ostalCode" and the Object is the value of the object.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So in the case of an int the Map would contain an instance of Integer for that property.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One thing to be aware of, i found a bug yesterday to do with saving number properties (&lt;/SPAN&gt;&lt;A href="http://www.alfresco.org/jira/browse/AWC-524" rel="nofollow noopener noreferrer"&gt;http://www.alfresco.org/jira/browse/AWC-524&lt;/A&gt;&lt;SPAN&gt;), it is now fixed in the latest code.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 09:33:42 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37426#M19809</guid>
      <dc:creator>gavinc</dc:creator>
      <dc:date>2006-02-15T09:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: subclass of NewUserWizard</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37427#M19810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;oki thanks. Is it the same problem with other types date, boolean…?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 13:20:55 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37427#M19810</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-15T13:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: subclass of NewUserWizard</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37428#M19811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No, it was only numbers that were effected.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 14:12:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37428#M19811</guid>
      <dc:creator>gavinc</dc:creator>
      <dc:date>2006-02-15T14:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: subclass of NewUserWizard</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37429#M19812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Another small question again… &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;SPAN&gt;What is exactly the goal of the function populate()? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Because I realized that I added an attribute d:boolean "ready" that I called in finish() but not in populate() and while entering a value in my person-properties.jsp page I can get it back in my users.jsp page and it appears in the NodeBrowser of Administration Console so why using populate() then?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 15:05:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/subclass-of-newuserwizard/m-p/37429#M19812</guid>
      <dc:creator>soeursourire</dc:creator>
      <dc:date>2006-02-15T15:05:45Z</dc:date>
    </item>
  </channel>
</rss>

