1 19 24 25 package org.netbeans.modules.j2ee.sun.dd.api.ejb; 26 27 31 public interface IorSecurityConfig extends org.netbeans.modules.j2ee.sun.dd.api.CommonDDBean { 32 public static final String TRANSPORT_CONFIG = "TransportConfig"; public static final String AS_CONTEXT = "AsContext"; public static final String SAS_CONTEXT = "SasContext"; 36 39 public void setTransportConfig(TransportConfig value); 40 43 public TransportConfig getTransportConfig(); 44 45 public TransportConfig newTransportConfig(); 46 49 public void setAsContext(AsContext value); 50 53 public AsContext getAsContext(); 54 55 public AsContext newAsContext(); 56 59 public void setSasContext(SasContext value); 60 63 public SasContext getSasContext(); 64 65 public SasContext newSasContext(); 66 } 67 | Popular Tags |