[email protected] wrote: > Author: lektran > Date: Tue Apr 6 17:00:05 2010 > New Revision: 931222 > > URL: http://svn.apache.org/viewvc?rev=931222&view=rev > Log: > Store the ArtifactInfo's Recently Viewed Artifacts list in the session as > basic maps instead of ArtifactInfoBase objects that aren't serializable. > > Modified: > > ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/artifactinfo/ArtifactInfo.groovy > > ofbiz/trunk/framework/webtools/webapp/webtools/artifactinfo/ArtifactInfo.ftl > > Modified: > ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/artifactinfo/ArtifactInfo.groovy > URL: > http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/artifactinfo/ArtifactInfo.groovy?rev=931222&r1=931221&r2=931222&view=diff > ============================================================================== > --- > ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/artifactinfo/ArtifactInfo.groovy > (original) > +++ > ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/artifactinfo/ArtifactInfo.groovy > Tue Apr 6 17:00:05 2010 > @@ -49,15 +49,16 @@ if ("search".equals(parameters.findType) > } > > if (artifactInfo) { > + artifactInfoMap = [type : artifactInfo.getType(), uniqueId : > artifactInfo.getUniqueId(), displayName : artifactInfo.getDisplayName()];
What is the ofbiz best practice for reading bean-type info? artifactInfo.type, or artifactInfo.getType()?
