pluto-container/src/main/java/org/apache/pluto/container/om/portlet/impl/JSR286ConfigurationProcessor.java [224:245]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   private void handleUA(List<UserAttributeType> uats) {
      for (UserAttributeType uat : uats) {

         // validate data
         if ((uat.getName() == null) || (uat.getName().getValue() == null)) {
            String warning = "Bad user attribute will be ignored. Name was null. Continuing ...";
            LOG.warn(warning);
            continue;
         }

         // set up the user attribute
         UserAttributeImpl attr = new UserAttributeImpl(uat.getName()
               .getValue());
         for (Description desc : handleDescriptions(uat.getDescription())) {
            attr.addDescription(desc);
         }

         // add it to the model
         pad.addUserAttribute(attr);

      }
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



pluto-container/src/main/java/org/apache/pluto/container/om/portlet/impl/JSR168ConfigurationProcessor.java [173:194]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   private void handleUA(List<UserAttributeType> uats) {
      for (UserAttributeType uat : uats) {

         // validate data
         if ((uat.getName() == null) || (uat.getName().getValue() == null)) {
            String warning = "Bad user attribute will be ignored. Name was null. Continuing ...";
            LOG.warn(warning);
            continue;
         }

         // set up the user attribute
         UserAttributeImpl attr = new UserAttributeImpl(uat.getName()
               .getValue());
         for (Description desc : handleDescriptions(uat.getDescription())) {
            attr.addDescription(desc);
         }

         // add it to the model
         pad.addUserAttribute(attr);

      }
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



