/glassfish-3.1.2/common/simple-glassfish-api/src/main/java/org/glassfish/embeddable/ |
H A D | BootstrapProperties.java | 46 * Encapsulates the set of properties required to bootstrap GlassFishRuntime. 55 private Properties properties; field in class:BootstrapProperties 58 * Create BootstrapProperties with default properties. 61 properties = new Properties(); 65 * Create BootstrapProperties with custom properties. 66 * This method does not take a copy of the passed in properties object; instead it just maintains a reference to 69 * <p/>Custom properties can include GlassFish_Platform, 72 * <p/>Custom properties can also include additional properties which are required 78 this.properties [all...] |
/glassfish-3.1.2/load-balancer/admin/src/main/java/org/glassfish/loadbalancer/admin/cli/reader/impl/ |
H A D | PropertyReaderImpl.java | 63 public static PropertyReader[] getPropertyReaders(Properties properties) { argument 64 if (properties == null) { 65 properties = new Properties(); 68 if (properties.getProperty( 70 properties.setProperty( 75 if (properties.getProperty( 77 properties.setProperty( 82 if (properties.getProperty( 84 properties.setProperty( 89 if (properties [all...] |
/glassfish-3.1.2/security/jaspic-provider-framework/src/main/java/com/sun/jaspic/config/factory/ |
H A D | EntryInfo.java | 60 private final Map<String, String> properties; field in class:EntryInfo 72 public EntryInfo(String className, Map<String, String> properties) { argument 78 this.properties = properties; 86 EntryInfo(String className, Map<String, String> properties, argument 95 this.properties = properties; 105 EntryInfo(String className, Map<String, String> properties, argument 109 this.properties = properties; [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/startup/ |
H A D | CatalinaProperties.java | 85 private static Properties properties = null; field in class:CatalinaProperties 98 return properties.getProperty(name); 107 return properties.getProperty(name, defaultValue); 116 * Load properties. 136 File properties = new File(conf, "catalina.properties"); 137 is = new FileInputStream(properties); 146 ("/org/apache/catalina/startup/catalina.properties"); 154 properties = new Properties(); 155 properties [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/digester/ |
H A D | ParserFeatureSetterFactory.java | 71 * Allows logical properties depending on logical parser versions 95 * @param properties (logical) properties to be set on parser 99 public static SAXParser newSAXParser(Properties properties) argument 106 return XercesParser.newSAXParser(properties); 108 return GenericParser.newSAXParser(properties);
|
H A D | GenericParser.java | 89 "http://java.sun.com/xml/jaxp/properties/schemaSource"; 95 "http://java.sun.com/xml/jaxp/properties/schemaLanguage"; 99 * @param properties parser specific properties/features 102 public static SAXParser newSAXParser(Properties properties) argument 108 (SAXParserFactory)properties.get("SAXParserFactory"); 110 String schemaLocation = (String)properties.get("schemaLocation"); 111 String schemaLanguage = (String)properties.get("schemaLanguage");
|
H A D | XercesParser.java | 77 * parser, some features/properties need to be set. 95 "http://java.sun.com/xml/jaxp/properties/schemaSource"; 102 "http://java.sun.com/xml/jaxp/properties/schemaLanguage"; 158 * @param properties parser specific properties/features 161 public static SAXParser newSAXParser(Properties properties) argument 167 (SAXParserFactory)properties.get("SAXParserFactory"); 181 configureOldXerces(parser,properties); 189 * The <code>properties</code> object may contains information about 191 * @param properties parse 193 configureOldXerces(SAXParser parser, Properties properties) argument [all...] |
/glassfish-3.1.2/admin/rest/src/test/java/org/glassfish/admin/rest/ |
H A D | PropertiesBagTest.java | 72 List<Map<String, String>> properties = getProperties(response); 73 assertTrue(isPropertyFound(properties, PROP_DOMAIN_NAME)); 88 List<Map<String, String>> properties = new ArrayList<Map<String, String>>(); 94 properties.add(createProperty(empty,"")); 95 properties.add(createProperty(foo,"foovalue")); 96 properties.add(createProperty(bar,"barvalue")); 97 createProperties(URL_DERBYPOOL_PROPERTIES, properties); 104 properties.clear(); 105 properties.add(createProperty(abc,"abcvalue")); 106 createProperties(URL_DERBYPOOL_PROPERTIES, properties); 293 createProperties(String endpoint, List<Map<String, String>> properties) argument 327 buildPayload(List<Map<String, String>> properties) argument 335 isPropertyFound(List<Map<String, String>> properties, String name) argument 339 getProperty(List<Map<String, String>> properties, String name) argument [all...] |
/glassfish-3.1.2/ejb/javax.ejb/src/main/java/javax/ejb/spi/ |
H A D | EJBContainerProvider.java | 77 public EJBContainer createEJBContainer(Map<?,?> properties) throws EJBException; argument
|
/glassfish-3.1.2/security/jaspic-provider-framework/src/main/java/com/sun/jaspic/config/delegate/ |
H A D | MessagePolicyDelegate.java | 53 public MessagePolicy getRequestPolicy(String authContextID, Map properties); argument 55 public MessagePolicy getResponsePolicy(String authContextID, Map properties); argument
|
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/osgi/ |
H A D | OSGiFrameworkLauncher.java | 64 private Properties properties; field in class:OSGiFrameworkLauncher 67 public OSGiFrameworkLauncher(Properties properties) { argument 68 this.properties = properties; 77 framework = ff.newFramework(properties);
|
H A D | GlassFishMainActivator.java | 63 * to be set via framework context properties called com.sun.aas.installRoot and com.sun.aas.instanceRoot 106 Properties properties = prepareStartupContext(context); 107 final BootstrapProperties bsProperties = new BootstrapProperties(properties); 112 gf = gfr.newGlassFish(new GlassFishProperties(properties)); 122 Properties properties = new Properties(); 138 properties.setProperty(Constants.INSTALL_ROOT_PROP_NAME, 144 properties.setProperty(Constants.INSTANCE_ROOT_PROP_NAME, 147 properties.putAll(makeProvisioningOptions()); 150 properties.setProperty(Constants.BUILDER_NAME_PROPERTY, EmbeddedOSGiGlassFishRuntimeBuilder.class.getName()); 151 return properties; [all...] |
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/ |
H A D | EntityManagerReferenceDescriptor.java | 62 private Map<String, String> properties = new HashMap<String,String>(); field in class:EntityManagerReferenceDescriptor 106 properties.put(name, value); 110 return new HashMap<String,String>(properties); 128 properties.equals(other.properties)
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/deploy/ |
H A D | ResourceBase.java | 123 * Holder for our configured properties. 125 private HashMap<String, Object> properties = field in class:ResourceBase 132 return properties.get(name); 139 properties.put(name, value); 146 properties.remove(name); 150 * List properties. 153 return properties.keySet().iterator();
|
/glassfish-3.1.2/tests/amx/ |
H A D | run.sh | 50 export PROPS=resources/amxtest.properties
|
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/connector/cci/ |
H A D | InteractionSpecJavaBeansCompliance.java | 87 PropertyDescriptor[] properties = bi.getPropertyDescriptors(); 88 for (int i=0; i<properties.length;i++) { 90 if (properties[i].getReadMethod()==null || 91 properties[i].getWriteMethod()==null) { 101 new Object[] {mcf.getName(), properties[i].getName()} )); 103 if (!properties[i].isConstrained() && !properties[i].isBound()) { 112 new Object[] {properties[i].getName(), mcf.getName()} )); 126 // now iterates over the properties and look for descrepencies
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/common/util/logging/ |
H A D | LoggingConfig.java | 70 /* update the properties to new values. properties is a Map of names of properties and 72 * logging.properties file. 74 * The readConfiguration method is called on the logManager after updating the properties. 77 Map<String, String> updateLoggingProperties(Map<String, String> properties) throws IOException; argument 79 /* update the properties to new values for given target server.. properties is a Map of names of properties and 81 * logging.properties fil 86 updateLoggingProperties(Map<String, String> properties, String targetServer) argument 106 deleteLoggingProperties(Map<String, String> properties, String targetConfigName) argument 111 deleteLoggingProperties(Map<String, String> properties) argument [all...] |
/glassfish-3.1.2/security/javax.security.auth.message/src/main/java/javax/security/auth/message/config/ |
H A D | ClientAuthConfig.java | 108 * @param properties A Map object that may be used by 109 * the caller to augment the properties that will be passed 122 getAuthContext(String authContextID, Subject clientSubject, Map properties) argument
|
H A D | ServerAuthConfig.java | 108 * @param properties A Map object that may be used by 109 * the caller to augment the properties that will be passed 122 getAuthContext(String authContextID, Subject serviceSubject, Map properties) argument
|
/glassfish-3.1.2/ejb/javax.ejb/src/main/java/javax/ejb/embeddable/ |
H A D | EJBContainer.java | 107 * set of configuration properties. 109 * @param properties Spec-defined and/or vendor-specific 110 * properties. The spec reserves the prefix 111 * <code>"javax.ejb."</code> for spec-defined properties. 118 public static EJBContainer createEJBContainer(Map<?,?> properties) { argument 127 container = provider.createEJBContainer(properties); 146 reportError(properties, errors, returnedNull); 175 * @param properties the properties passed as an argument to the 185 private static void reportError(Map<?,?> properties, Ma argument [all...] |
/glassfish-3.1.2/persistence/common/src/main/java/org/glassfish/persistence/common/database/ |
H A D | PropertyHelper.java | 80 * Loads properties list from the specified resource into specified Properties object. 81 * @param properties Properties object to load 86 public static void loadFromResource(Properties properties, String resourceName, ClassLoader classLoader) argument 88 load(properties, resourceName, false, classLoader); 93 * Loads properties list from the specified file into specified Properties object. 94 * @param properties Properties object to load 97 public static void loadFromFile(Properties properties, String fileName) argument 99 load(properties, fileName, true, null); 103 * Loads properties list from the specified resource 111 * @param properties Propertie 114 load(Properties properties, final String resourceName, final boolean loadFromFile, final ClassLoader classLoader) argument [all...] |
/glassfish-3.1.2/security/jaspic-provider-framework/src/main/java/com/sun/jaspic/config/jaas/ |
H A D | JAASAuthConfigProvider.java | 66 private Map<String, ?> properties; field in class:JAASAuthConfigProvider 69 public JAASAuthConfigProvider(Map properties, AuthConfigFactory factory) { argument 70 this.properties = properties; 90 return properties; 142 jaasConfig, properties, appContext);
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/org/glassfish/ejb/embedded/ |
H A D | EJBContainerProviderImpl.java | 117 public EJBContainer createEJBContainer(Map<?, ?> properties) throws EJBException { argument 118 if (properties == null || properties.get(EJBContainer.PROVIDER) == null || 119 properties.get(EJBContainer.PROVIDER).equals(GF_PROVIDER_NAME)) { 127 Locations l = getLocations(properties); 129 createContainer(properties, l); 130 Set<DeploymentElement> modules = addModules(properties, l); 134 container.deploy(properties, modules); 159 private Locations createContainer(Map<?, ?> properties, Locations l) throws EJBException { argument 169 // Propagate non EJB embeddable container properties int 246 addModules(Map<?, ?> properties, Locations l) argument 510 getLocations(Map<?, ?> properties) argument 604 addWebContainerIfRequested(Map<?, ?> properties, GlassFishProperties props) argument 622 copyUserProperties(Map<?, ?> properties, Properties props) argument 647 getBooleanProperty(Map<?, ?> properties, String key) argument [all...] |
/glassfish-3.1.2/admin/util/src/main/java/org/glassfish/admin/cli/resources/ |
H A D | ResourceManager.java | 63 * @param properties properties 68 ResourceStatus create(Resources resources, HashMap attributes, final Properties properties, String target) argument 72 * creates config-bean equivalent for the resource configuration provided as attributes and properties<br> 76 * @param properties properties of the resource 81 Resource createConfigBean(Resources resources, HashMap attributes, Properties properties, boolean validate) argument
|
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/ |
H A D | ConnectionFactory.java | 103 * <p>It is important to note that the properties passed through 108 * with complete set of properties required for the creation of a 111 * @param properties Connection parameters and security 134 Connection getConnection(ConnectionSpec properties) argument
|