/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/ |
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 | DeploymentFactory.java | 55 * @param props is a properties collection to pass implementation 60 public ClientJarMaker getClientJarMaker(Properties props); argument
|
/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/tests/amx/src/org/glassfish/admin/amxtest/ |
H A D | PropertyKeys.java | 162 final Map<String, String> props = new HashMap<String, String>(); 164 props.put(HOST_KEY, DEFAULT_HOST); 165 props.put(PORT_KEY, DEFAULT_PORT); 166 props.put(USER_KEY, DEFAULT_USER); 167 props.put(PASSWORD_KEY, DEFAULT_PASSWORD); 168 props.put(TRUSTSTORE_KEY, DEFAULT_TRUSTSTORE); 169 props.put(TRUSTSTORE_PASSWORD_KEY, DEFAULT_TRUSTSTORE_PASSWORD); 170 props.put(USE_TLS_KEY, DEFAULT_USE_TLS); 171 props.put(CONNECT_KEY, DEFAULT_CONNECT); 172 props [all...] |
/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/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...] |
/glassfish-3.1.2/admin/backup/src/main/java/com/sun/enterprise/backup/ |
H A D | Status.java | 64 props = new Properties(); 77 props.store(out, Constants.PROPS_HEADER); 101 props = null; 104 if(props == null) { 113 // props is a class variable. 114 props = null; 117 if (props == null) 128 props = null; 132 String s = props.getProperty(Constants.PROPS_TIMESTAMP_MSEC); 149 if(props 353 private Properties props; field in class:Status [all...] |
/glassfish-3.1.2/security/core/src/main/java/com/sun/appserv/security/ |
H A D | AuditModule.java | 58 protected Properties props = null; field in class:AuditModule 63 * @param props the properties for the AuditModule. These properties are 66 public void init(Properties props) { argument 67 this.props = props;
|
/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/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/stringifier/ |
H A D | ObjectNameStringifier.java | 114 public ObjectNameStringifier(final List<String> props) argument 116 mOrderedProps = props; 120 public ObjectNameStringifier(final String[] props) argument 122 this(ListUtil.newListFromArray(props)); 146 final Map<String, String> props = TypeCast.asMap(on.getKeyPropertyList()); 149 ordered.retainAll(props.keySet()); 153 while (iter.hasNext() && props.keySet().size() >= 2) 156 final String value = props.get(key); 160 props.remove(key); 165 final Set<String> remainingSet = props 187 setProps(final List<String> props) argument [all...] |
/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/server/logging/ |
H A D | LogManagerService.java | 170 Map<String, String> props = null; 174 props = loggingConfig.getLoggingProperties(); 176 props = loggingConfig.getLoggingProperties(targetServer.getCluster().getConfigRef()); 178 props = loggingConfig.getLoggingProperties(targetServer.getConfigRef()); 180 props = loggingConfig.getLoggingProperties(); 183 props = loggingConfig.getLoggingProperties(); 186 return props; 273 Map<String, String> props = getLoggingProperties(); 274 formatterClassname = props.get(CONSOLEHANDLER_FORMATTER_PROPERTY); 280 recordBeginMarker = props 572 generateAttributeChangeEvent(String property, String propertyDetail, Map props) argument [all...] |
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/tree/ |
H A D | ListTreeAdaptor.java | 213 Map<String, Object> props = new HashMap<String, Object>(); 220 setProperty(props, "text", desc.getOption("text")); 221 setProperty(props, "url", desc.getOption("url")); 222 setProperty(props, "imageURL", desc.getOption("imageURL")); 223 setProperty(props, "target", desc.getOption("target")); 224 setProperty(props, "action", desc.getOption("action")); 232 setProperty(props, "actionListener", desc.getOption("actionListener")); 233 setProperty(props, "expanded", desc.getOption("expanded")); 234 setProperty(props, "rendered", desc.getOption("rendered")); 242 setProperty(props, "tex 282 setProperty(Map props, String key, Object value) argument [all...] |
H A D | JndiBrowserTreeAdaptor.java | 244 Map<String, Object> props = new HashMap<String, Object>(); 251 setProperty(props, "text", desc.getOption("text")); 252 setProperty(props, "url", desc.getOption("url")); 253 setProperty(props, "imageURL", desc.getOption("imageURL")); 254 setProperty(props, "target", desc.getOption("target")); 255 setProperty(props, "action", desc.getOption("action")); 262 setProperty(props, "actionListener", 264 setProperty(props, "expanded", desc.getOption("expanded")); 274 setProperty(props, "text", context); 275 setProperty(props, "nodeClas 316 setProperty(Map props, String key, Object value) argument [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/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/security/core/src/main/java/com/sun/enterprise/security/auth/ |
H A D | PrincipalMapper.java | 56 public void initialize(Properties props); argument
|
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/admin/ |
H A D | Payload.java | 140 * @param props Properties to be included with the part 147 final Properties props, 155 * @param props Properties to be included with the part 162 final Properties props, 171 * @param props Properties to be included with the part 179 final Properties props, 235 * @param props Properties to be included with the part 243 final Properties props, 255 * @param props Properties to be included with the part 264 final Properties props, 144 addPart( final String contentType, final String name, final Properties props, final String content) argument 159 addPart( final String contentType, final String name, final Properties props, final InputStream content) argument 175 addPart( final int index, final String contentType, final String name, final Properties props, final InputStream content ) argument 239 attachFile( final String contentType, final URI fileURI, final String dataRequestName, final Properties props, final File file) argument 260 attachFile( final String contentType, final URI fileURI, final String dataRequestName, final Properties props, final File file, final boolean isRecursive) argument 277 requestFileRemoval( final URI fileURI, final String dataRequestName, final Properties props) argument 292 requestFileRemoval( final URI fileURI, final String dataRequestName, final Properties props, final boolean isRecursive) argument 318 requestFileReplacement( final String contentType, final URI fileURI, final String dataRequestName, final Properties props, final File file, final boolean isRecursive) argument [all...] |
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/admin/payload/ |
H A D | PayloadImpl.java | 78 final Properties props, 80 parts.add(Part.newInstance(contentType, name, props, content)); 87 final Properties props, 89 parts.add(Part.newInstance(contentType, name, props, content)); 97 final Properties props, 100 parts.add(index, Part.newInstance(contentType, name, props, content)); 109 attachFile(contentType, fileURI, dataRequestName, null /* props */, file, false /* isRecursive */); 119 attachFile(contentType, fileURI, dataRequestName, null /* props */, file, isRecursive); 127 final Properties props, 129 attachFile(contentType, fileURI, dataRequestName, props, fil 75 addPart( final String contentType, final String name, final Properties props, final String content) argument 84 addPart( final String contentType, final String name, final Properties props, final InputStream content) argument 93 addPart( final int index, final String contentType, final String name, final Properties props, final InputStream content ) argument 123 attachFile( final String contentType, final URI fileURI, final String dataRequestName, final Properties props, final File file) argument 133 attachFile( final String contentType, final URI fileURI, final String dataRequestName, final Properties props, final File file, final boolean isRecursive) argument 174 requestFileReplacement( final String contentType, final URI fileURI, final String dataRequestName, final Properties props, final File file, final boolean isRecursive) argument 300 requestFileRemoval( final URI fileURI, final String dataRequestName, final Properties props) argument 308 requestFileRemoval( final URI fileURI, final String dataRequestName, final Properties props, final boolean isRecursive) argument 458 private Properties props; field in class:PayloadImpl.Part 467 Part(final String contentType, final String name, final Properties props) argument 509 newInstance( final String contentType, final String name, final Properties props, final InputStream is) argument 525 newInstance( final String contentType, final String name, final Properties props, final String content) argument 541 newInstance( final String contentType, final String name, final Properties props, final File file) argument 577 Streamed( final String contentType, final String name, final Properties props, final InputStream is) argument 606 Buffered( final String contentType, final String name, final Properties props, final String content) argument 646 Filed(final String contentType, final String name, final Properties props, final File file) argument [all...] |
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/factory/ |
H A D | MailSessionFactory.java | 146 Properties props = new Properties(); 147 props.put("mail.transport.protocol", "smtp"); 148 props.put("mail.smtp.host", "localhost"); 154 props.put(attr.getType(), attr.getContent()); 158 Session session = Session.getInstance(props, null);
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/runtime/web/ |
H A D | WebPropertyContainer.java | 89 WebProperty[] props = (WebProperty[])this.getValues(PROPERTY); 90 if (props==null) { 93 return props;
|
/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/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/jms/admin/src/main/java/org/glassfish/jms/admin/cli/ |
H A D | CreateJMSResource.java | 83 Properties props; field in class:CreateJMSResource 152 if (props != null) { 153 Enumeration en = props.keys(); 158 props.put(raKey, (String) props.get(key)); 160 props.remove(key); 204 Properties properties = validateDestinationResourceProps(props, jndiName); 298 if(props != null){ 299 Enumeration keys = props.keys(); 307 steadyPoolSize = props 410 validateDestinationResourceProps(Properties props, String jndiName) argument 440 getProvidedDestinationName(Properties props) argument [all...] |