Searched defs:props (Results 1 - 25 of 147) sorted by relevance

123456

/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/impl/mail/
H A DMailSessionAuthenticator.java53 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 DPropertiesDesc.java59 PropertyDesc[] props(); method in interface:PropertiesDesc
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/grizzly/
H A DGrizzlyInfo.java52 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 DGlobalResourceDeployer.java59 * @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 DConfigurator.java51 void configure(Properties props) throws GlassFishException; argument
H A DConfiguratorImpl.java63 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 DDeploymentFactory.java55 * @param props is a properties collection to pass implementation
60 public ClientJarMaker getClientJarMaker(Properties props); argument
H A DPEDeploymentFactoryImpl.java57 * @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 DApplicationClientJarMaker.java74 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 DClientJarMaker.java65 * @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 DModuleClientJarMaker.java68 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 DPrincipalMapper.java56 public void initialize(Properties props); argument
H A DTrustHandler.java55 public void initialize(Properties props); argument
/glassfish-3.1.2/common/simple-glassfish-api/src/main/java/org/glassfish/embeddable/
H A DBootstrapProperties.java75 * @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 DConnectorAdminObjectAdminServiceImpl.java76 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 DHTMLActionReporter.java106 private void write(Properties props, PrintWriter writer) { argument
107 if (props==null || props.size()==0) {
111 for (Map.Entry entry : props.entrySet()) {
H A DJsonActionReporter.java119 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 DNameValuePairNode.java95 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 DPropertyResolver.java95 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 DRestUtilHandlers.java96 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 DGFSystemImpl.java61 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 DGlassFishORBLifeCycleListener.java55 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 DPamRealm.java79 * @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 DPropertiesAccessTest.java75 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 DSystemPropertiesAccessTest.java71 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...]

Completed in 3945 milliseconds

123456