1 20 21 package com.methodhead.property; 22 23 import com.methodhead.util.OperationContext; 24 25 public interface PropertyPolicy { 26 27 29 31 33 public String isListPropertiesAuthorized( 34 OperationContext op ); 35 36 public String isSetPropertyFormAuthorized( 37 OperationContext op ); 38 39 public String isSetPropertyAuthorized( 40 OperationContext op ); 41 } 42 | Popular Tags |