1 23 24 package com.sun.enterprise.deployment.web; 25 26 28 29 public interface ResourceReference extends ContextParameter { 30 public static String CONTAINER_AUTHORIZATION = "Container"; 31 public static String APPLICATION_AUTHORIZATION = "Application"; 32 33 35 public String getType(); 36 public void setType(String type); 37 public void setDescription(String description); 38 39 public String getAuthorization(); 40 public void setAuthorization(String authorization); 41 } 42 | Popular Tags |