View Javadoc
1   package org.kuali.ole.krad;
2   
3   import org.kuali.rice.krad.uif.component.Component;
4   
5   /**
6    * Defines additional component properties for supporting KRAD pages in OLE.
7    */
8   public interface OleComponent extends Component {
9   
10  	/**
11  	 * Gets a form property name, which if resolves to {@code true} on the form,
12  	 * will result in this component being omitted from copy and lifecycle
13  	 * operations.
14  	 * 
15  	 * @return form property name, or null for no property-based filtering
16  	 */
17  	String getFilterModelProperty();
18  
19  }
20