1 23 24 package org.infoglue.cms.applications.contenttool.actions; 25 26 27 public class ViewContentVersionAttributeAction extends ViewContentVersionAction 28 { 29 private static final long serialVersionUID = 1L; 30 31 private String attributeName = null; 32 33 public ViewContentVersionAttributeAction() 34 { 35 super(); 36 } 37 38 public String getAttributeName() 39 { 40 return attributeName; 41 } 42 43 public void setAttributeName(String attributeName) 44 { 45 this.attributeName = attributeName; 46 } 47 48 } 49 | Popular Tags |