/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/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
|
/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");
|
/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/common/glassfish-api/src/main/java/org/glassfish/api/deployment/ |
H A D | UndeployCommandParameters.java | 77 public Properties properties=null; field in class:UndeployCommandParameters
|
/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/connectors/admin/src/main/java/org/glassfish/connectors/admin/cli/ |
H A D | PMFResourceManager.java | 73 public ResourceStatus create(Resources resources, HashMap attributes, Properties properties, String target) argument 92 public Resource createConfigBean(Resources resources, HashMap attributes, Properties properties, boolean validate) argument
|
H A D | CreateAdminObject.java | 106 private Properties properties; field in class:CreateAdminObject 141 rs = adminObjMgr.create(domain.getResources(), attrList, properties, target);
|
H A D | CreateConnectorResource.java | 101 private Properties properties; field in class:CreateConnectorResource 134 rs = connResMgr.create(domain.getResources(), attrList, properties, target);
|
H A D | CreateCustomResource.java | 93 private Properties properties; field in class:CreateCustomResource 126 rs = customResMgr.create(domain.getResources(), attrList, properties, target);
|
H A D | CreateJndiResource.java | 96 private Properties properties; field in class:CreateJndiResource 131 rs = jndiResManager.create(domain.getResources(), attrList, properties, target); 199 if (properties != null) { 200 for (java.util.Map.Entry e : properties.entrySet()) {
|
H A D | CreateResourceAdapterConfig.java | 89 private Properties properties; field in class:CreateResourceAdapterConfig 153 rs = resAdapterConfigMgr.create(domain.getResources(), attrList, properties, target);
|
/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 | EmbeddedOSGiGlassFishRuntime.java | 117 private void setEnv(Properties properties) { argument 118 final String installRootValue = properties.getProperty(com.sun.enterprise.glassfish.bootstrap.Constants.INSTALL_ROOT_PROP_NAME); 128 final String instanceRootValue = properties.getProperty(com.sun.enterprise.glassfish.bootstrap.Constants.INSTANCE_ROOT_PROP_NAME);
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/ |
H A D | CreateSystemProperties.java | 72 * Adds or updates one or more system properties of the domain, configuration, 75 * Usage: create-system-properties [--terse=false] [--echo=false] [--interactive=true] 82 @Service(name="create-system-properties") 87 @I18n("create.system.properties") 96 Properties properties; field in class:CreateSystemProperties 134 for (final Object key : properties.keySet()) { 141 spb.getSystemProperty(sysPropName).getValue().equals(properties.getProperty(propName))) { 149 // update existing system properties 162 newSysProp.setValue(properties.getProperty(propName)); 170 report.setMessage(localStrings.getLocalString("create.system.properties [all...] |
H A D | CreateProfiler.java | 100 Properties properties; field in class:CreateProfiler 144 if (properties != null) { 145 for ( Map.Entry e : properties.entrySet()) {
|
/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/server/logging/commands/ |
H A D | DeleteLogLevel.java | 80 String properties; field in class:DeleteLogLevel 108 String loggerNames[] = properties.split(":");
|
H A D | SetLogLevel.java | 95 Properties properties; field in class:SetLogLevel 127 for (final Object key : properties.keySet()) { 129 final String level = (String) properties.get(logger_name); 137 "set.log.level.properties", "{0} package set with log level {1}.\n", logger_name, level));
|
/glassfish-3.1.2/deployment/common/src/main/java/com/sun/enterprise/deploy/shared/ |
H A D | ArchiveFactory.java | 146 * @param properties property bag, can contain for example deploy time properties. Never null 150 public ReadableArchive openArchive(File path, DeployCommandParameters properties) throws IOException { argument 161 archive = fac.open(uri, properties);
|
/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/admin/rest/src/main/java/org/glassfish/admin/rest/utils/xml/ |
H A D | XmlMap.java | 67 public XmlMap(String name, Properties properties) { argument 70 for (Map.Entry entry : properties.entrySet()) {
|
/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/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
|