/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/impl/mail/ |
H A D | MailSessionAuthenticator.java | 53 private final Properties props; field in class:MailSessionAuthenticator 55 public MailSessionAuthenticator(Properties props) { argument 56 this.props = props; 64 String password = props.getProperty("mail." + protocol + ".password");
|
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/admin/config/ |
H A D | PropertiesDesc.java | 59 PropertyDesc[] props(); method in interface:PropertiesDesc
|
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/grizzly/ |
H A D | GrizzlyInfo.java | 52 Properties props = new Properties(); field in class:GrizzlyInfo 55 props.setProperty(key, value);
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/deployer/ |
H A D | GlobalResourceDeployer.java | 59 * @param props An array of ElementProperty objects. 62 String[] getPropNamesAsStrArr(Property[] props) { argument 63 if (props == null) { 66 String[] result = new String[props.length]; 67 for (int i = 0; i < props.length; i++) { 68 result[i] = props[i].getName(); 77 * @param props An array of ElementProperty objects. 80 String[] getPropValuesAsStrArr(Property[] props) { argument 81 if (props == null) { 84 String[] result = new String[props [all...] |
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/ |
H A D | Configurator.java | 51 void configure(Properties props) throws GlassFishException; argument
|
H A D | ConfiguratorImpl.java | 63 public void configure(Properties props) throws GlassFishException { argument 65 for (Object obj : props.keySet()) { 69 key.substring(CONFIG_PROP_PREFIX.length()) + "=" + props.getProperty(key));
|
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/ |
H A D | DeploymentFactory.java | 55 * @param props is a properties collection to pass implementation 60 public ClientJarMaker getClientJarMaker(Properties props); argument
|
H A D | PEDeploymentFactoryImpl.java | 57 * @param props is a properties collection to pass implementation 62 public ClientJarMaker getClientJarMaker(Properties props) { argument 63 if (props != null) { 65 Boolean.parseBoolean(props.getProperty( 68 return new ModuleClientJarMaker(props); 70 return new ApplicationClientJarMaker(props); 73 return new ClientJarMakerImpl(props);
|
H A D | ApplicationClientJarMaker.java | 74 protected Properties props; field in class:ApplicationClientJarMaker 78 * @param props are the implementation properties (if any) 80 public ApplicationClientJarMaker(Properties props) { argument 81 this.props = props; 90 * @param props is a properties collection to pass implementation parameters 95 WritableArchive target,ZipItem[] stubs, Properties props) 97 create(descriptor, source, null, target, stubs, props); 107 * @param props is a properties collection to pass implementation parameters 113 Properties props) throw 94 create(RootDeploymentDescriptor descriptor, ReadableArchive source, WritableArchive target,ZipItem[] stubs, Properties props) argument 111 create(RootDeploymentDescriptor descriptor, ReadableArchive source, ReadableArchive source2, WritableArchive target,ZipItem[] stubs, Properties props) argument [all...] |
H A D | ClientJarMaker.java | 65 * @param props is a properties collection to pass implementation parameters 71 ZipItem[] stubs, Properties props) 81 * @param props is a properties collection to pass implementation parameters 85 public void create(RootDeploymentDescriptor descriptor, ReadableArchive source, ReadableArchive source2, WritableArchive target, ZipItem[] stubs, Properties props) argument 69 create(RootDeploymentDescriptor descriptor, ReadableArchive source, WritableArchive target, ZipItem[] stubs, Properties props) argument
|
H A D | ModuleClientJarMaker.java | 68 protected Properties props; field in class:ModuleClientJarMaker 72 * @param props are the implementation properties (if any) 74 public ModuleClientJarMaker(Properties props) { argument 75 this.props = props; 84 * @param props is a properties collection to pass implementation parameters 89 WritableArchive target,ZipItem[] stubs, Properties props) 91 create(descriptor, source, null, target, stubs, props); 101 * @param props is a properties collection to pass implementation parameters 107 Properties props) throw 88 create(RootDeploymentDescriptor descriptor, ReadableArchive source, WritableArchive target,ZipItem[] stubs, Properties props) argument 105 create(RootDeploymentDescriptor descriptor, ReadableArchive source, ReadableArchive source2, WritableArchive target,ZipItem[] stubs, Properties props) argument [all...] |
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/auth/ |
H A D | PrincipalMapper.java | 56 public void initialize(Properties props); argument
|
H A D | TrustHandler.java | 55 public void initialize(Properties props); argument
|
/glassfish-3.1.2/common/simple-glassfish-api/src/main/java/org/glassfish/embeddable/ |
H A D | BootstrapProperties.java | 75 * @param props Properties object which will back this BootstrapProperties object. 77 public BootstrapProperties(Properties props) { argument 78 this.properties = props;
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/service/ |
H A D | ConnectorAdminObjectAdminServiceImpl.java | 76 Properties props) 88 adminObjectType, adminObjectClassName, props); 70 addAdminObject( String appName, String connectorName, ResourceInfo resourceInfo, String adminObjectType, String adminObjectClassName, Properties props) argument
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/common/ |
H A D | HTMLActionReporter.java | 106 private void write(Properties props, PrintWriter writer) { argument 107 if (props==null || props.size()==0) { 111 for (Map.Entry entry : props.entrySet()) {
|
H A D | JsonActionReporter.java | 119 private void writeProperties(Properties props, PrintWriter writer) { argument 120 if (props == null || props.size() == 0) { 125 for (Map.Entry entry : props.entrySet()) {
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/ |
H A D | NameValuePairNode.java | 95 public void writeDescriptor(Node parent, String nodeName, Iterator props) { argument 96 if (props==null) 99 while(props.hasNext()) { 100 NameValuePairDescriptor aProp = (NameValuePairDescriptor) props.next();
|
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/ |
H A D | PropertyResolver.java | 95 private String getPropertyValue(String propName, List<SystemProperty> props) { argument 97 for (SystemProperty prop : props) {
|
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/handlers/ |
H A D | RestUtilHandlers.java | 96 List<Map<String, String>> props = (List<Map<String, String>>) message.get("properties"); 97 processProps(props, handlerCtx); 121 List<Map<String, String>> props = (List<Map<String, String>>) handlerCtx.getInputValue("messageListProps"); 124 processProps(props, handlerCtx); 126 processProps(props, handlerCtx, id); 142 List<Map<String, Object>> props = (List<Map<String, Object>>) handlerCtx.getInputValue("listProps"); 143 List<String> keyList = getListFromPropertiesList(props); 147 public static List<String> getListFromPropertiesList(List<Map<String, Object>> props) { argument 149 if (props != null) { 150 for (Map<String, Object> map : props) { 185 getListFromMapKey(List<Map<String, String>> props, String... ids) argument 199 getMapFromMapKey(List<Map<String, String>> props, String... ids) argument [all...] |
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/glassfish/ |
H A D | GFSystemImpl.java | 61 return Collections.unmodifiableMap(props); 71 return props.get(key); 81 props.put(key, value); 87 // initial props copy java.lang.System Properties 88 private final ConcurrentMap<String,String> props = new ConcurrentHashMap<String, String>( field in class:GFSystemImpl
|
/glassfish-3.1.2/orb/orb-connector/src/main/java/org/glassfish/enterprise/iiop/api/ |
H A D | GlassFishORBLifeCycleListener.java | 55 public void initializeORBInitProperties(List<String> args, Properties props); argument
|
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/auth/realm/pam/ |
H A D | PamRealm.java | 79 * @param props Initialization parameters used by this realm. 86 public synchronized void init(Properties props) argument 88 super.init(props); 89 String jaasCtx = props.getProperty(JAAS_CONTEXT_PARAM);
|
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/config/ |
H A D | PropertiesAccessTest.java | 75 testCreateEmptyProperty(final PropertiesAccess props) { argument 78 final PropertyConfig pc = props.createPropertyConfig(NAME, ""); 79 assert props.getPropertyConfigMap().get(NAME) != null; 80 props.removePropertyConfig(NAME); 81 assert props.getPropertyConfigMap().get(NAME) == null; 85 testPropertiesGet(final PropertiesAccess props) { argument 86 final Map<String, PropertyConfig> all = props.getPropertyConfigMap(); 95 testPropertiesSetToSameValue(final PropertiesAccess props) { argument 96 final Map<String, PropertyConfig> all = props.getPropertyConfigMap(); 127 testPropertiesCreateRemove(final PropertiesAccess props) { argument [all...] |
H A D | SystemPropertiesAccessTest.java | 71 checkPropertiesGet(final SystemPropertiesAccess props) { argument 72 final Map<String, SystemPropertyConfig> all = props.getSystemPropertyConfigMap(); 80 testPropertiesSetToSameValue(final SystemPropertiesAccess props) { argument 81 final Map<String, SystemPropertyConfig> all = props.getSystemPropertyConfigMap(); 95 testCreateEmptySystemProperty(final SystemPropertiesAccess props) { argument 98 props.createSystemPropertyConfig(NAME, ""); 99 assert props.getSystemPropertyConfigMap().get(NAME) != null; 100 props.removeSystemPropertyConfig(NAME); 101 assert props.getSystemPropertyConfigMap().get(NAME) == null; 105 testSystemPropertiesCreateRemove(final SystemPropertiesAccess props) { argument [all...] |