1 23 24 package com.sun.enterprise.deployment.web; 25 26 29 public interface UserDataConstraint { 30 public static String NONE_TRANSPORT = "NONE"; 31 public static String INTEGRAL_TRANSPORT = "INTEGRAL"; 32 public static String CONFIDENTIAL_TRANSPORT = "CONFIDENTIAL"; 33 public static String CLEAR = "CLEAR"; 35 public String getDescription(); 36 public void setDescription(String description); 37 38 public String getTransportGuarantee(); 39 public String [] getUnacceptableTransportGuarantees(); 40 public void setTransportGuarantee(String transportGuarantee); 41 } 42 43 | Popular Tags |