Searched refs:getSystemProperty (Results 1 - 25 of 36) sorted by relevance

12

/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/
H A DSystemPropertyBag.java66 * getSystemProperty().add(newItem);
72 List<SystemProperty> getSystemProperty(); method in interface:SystemPropertyBag
75 SystemProperty getSystemProperty(String name); method in interface:SystemPropertyBag
101 public static SystemProperty getSystemProperty(final SystemPropertyBag me, final String name) { method in class:SystemPropertyBag.Duck
102 for (final SystemProperty prop : me.getSystemProperty()) {
115 final SystemProperty prop = getSystemProperty(me, name);
123 return me.getSystemProperty(name) != null;
H A DCopyConfig.java99 List<SystemProperty> sysprops = destCopy.getSystemProperty() ;
110 destCopy.getSystemProperty().add(newSysProp);
H A DCluster.java343 * getSystemProperty().add(newItem);
355 List<SystemProperty> getSystemProperty(); method in interface:Cluster
703 writeableConfig.getSystemProperty().add(gmsListenerPortSysProp);
826 SystemProperty gmsProp = serverConfig.getSystemProperty(propName);
829 List<SystemProperty> propList = c.getSystemProperty();
H A DServer.java225 * getSystemProperty().add(newItem);
236 List<SystemProperty> getSystemProperty(); method in interface:Server
588 serverConf.getSystemProperty(propName);
594 instance.getSystemProperty().add(gmsListenerPortProp);
766 List<SystemProperty> spList = instance.getSystemProperty();
/glassfish-3.1.2/common/amx-config/src/main/java/org/glassfish/admin/amx/intf/config/
H A DSystemPropertiesAccess.java57 public Map<String, SystemProperty> getSystemProperty(); method in interface:SystemPropertiesAccess
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DPropertyResolver.java122 propVal = getPropertyValue(propName, _server.getSystemProperty());
128 propVal = getPropertyValue(propName, _cluster.getSystemProperty());
134 propVal = getPropertyValue(propName, _config.getSystemProperty());
139 propVal = getPropertyValue(propName, _domain.getSystemProperty());
H A DSystemPropertyUpgrade.java105 String httpVal = bag.getSystemProperty(HTTP).getValue();
158 if (bag.getSystemProperty(HTTP) != null) {
159 final String httpVal = bag.getSystemProperty(HTTP).getValue();
166 for (SystemProperty sp : s.getConfig().getSystemProperty()) {
223 if (spb.getSystemProperty(portName) == null) {
227 spb.getSystemProperty().add(newSysProp);
/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/util/
H A DServerPorts.java103 propList = domain.getSystemProperty();
108 propList = cluster.getSystemProperty();
114 propList = config.getSystemProperty();
119 propList = server.getSystemProperty();
H A DPortUtils.java68 List<SystemProperty> sysProps = server.getSystemProperty();
H A DPortBaseHelper.java223 SystemProperty sp = _server.getSystemProperty(name);
228 _server.getSystemProperty().add(newSP);
H A DServerHelper.java216 SystemProperty prop = server.getSystemProperty(key);
222 prop = config.getSystemProperty(key);
H A DPortManager.java127 List<SystemProperty> sps = newServer.getSystemProperty();
/glassfish-3.1.2/cluster/cli/src/main/java/com/sun/enterprise/admin/cli/cluster/
H A DCreateNodeAgentCommand.java90 String agentRoot = getSystemProperty(
96 agentsDir = new File(new File(getSystemProperty(
H A DLocalInstanceCommand.java439 String installRootPath = getSystemProperty(
462 String productRootPath = getSystemProperty(
652 String nodeDirDefault = getSystemProperty(
/glassfish-3.1.2/admin/cli-optional/src/main/java/com/sun/enterprise/admin/cli/optional/
H A DDatabaseCommand.java93 sInstallRoot = new File(getSystemProperty(INSTALL_ROOT_PROPERTY));
100 sJavaHome = new File(getSystemProperty(JAVA_ROOT_PROPERTY));
102 dbLocation = new File(getSystemProperty(DERBY_ROOT_PROPERTY));
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/
H A DCreateSystemProperties.java141 spb.getSystemProperty(sysPropName).getValue().equals(properties.getProperty(propName))) {
152 for (SystemProperty sysProperty : param.getSystemProperty()) {
154 param.getSystemProperty().remove(sysProperty);
163 param.getSystemProperty().add(newSysProp);
H A DListSystemProperties.java124 List<SystemProperty> sysProps = spb.getSystemProperty();
H A DDeleteSystemProperty.java209 param.getSystemProperty().remove(param.getSystemProperty(propName));
/glassfish-3.1.2/osgi-platforms/glassfish-osgi-console-plugin/src/main/java/org/glassfish/osgi/admingui/
H A DOSGIConsoleHandlers.java77 SystemProperty httpPort = server.getSystemProperty(http_port);
83 SystemProperty httpConfigPort = cfg.getSystemProperty(http_port);
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/listener/
H A DCombinedJavaConfigSystemPropertyListener.java536 List<SystemProperty> ssps = server.getSystemProperty();
542 return c != null ? hasSystemProperty(c.getSystemProperty(), sp) : false;
547 return c != null ? hasSystemProperty(c.getSystemProperty(), sp) : false;
551 return getSystemProperty(server.getSystemProperty(), spName);
556 return c != null ? getSystemProperty(c.getSystemProperty(), spName) : null;
561 return c != null ? getSystemProperty(c.getSystemProperty(), spName) : null;
565 return getSystemProperty(domai
577 private SystemProperty getSystemProperty(List<SystemProperty> ssps, String spName) { method in class:CombinedJavaConfigSystemPropertyListener
[all...]
/glassfish-3.1.2/admin/rest/src/test/java/org/glassfish/admin/rest/
H A DSystemPropertiesTest.java181 Map<String, String> sysProp = getSystemProperty(propertyName, systemProperties);
191 Map<String, String> sysProp = getSystemProperty(propertyName, systemProperties);
203 sysProp = getSystemProperty(propertyName, systemProperties);
214 Map<String, String> sysProp = getSystemProperty(propertyName, systemProperties);
226 sysProp = getSystemProperty(propertyName, systemProperties);
237 private Map<String, String> getSystemProperty(String propName, List<Map<String, String>> systemProperties) { method in class:SystemPropertiesTest
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/
H A DSystemTasks.java171 List<SystemProperty> domainSPList = domain.getSystemProperty();
178 clusterSPList = cluster.getSystemProperty();
182 List<SystemProperty> serverSPList = server.getSystemProperty();
219 return (List<SystemProperty>) (config != null ? config.getSystemProperty() : Collections.emptyList());
/glassfish-3.1.2/common/amx-config-impl/src/main/java/org/glassfish/admin/amx/impl/config/
H A DAttributeResolverHelper.java109 final Map<String,SystemProperty> props = ((SystemPropertiesAccess)amx).getSystemProperty();
/glassfish-3.1.2/jms/jms-core/src/main/java/com/sun/enterprise/connectors/jms/system/
H A DMQAddressList.java197 String agentsDirPath = getSystemProperty(
203 String installRootPath = getSystemProperty(
242 protected String getSystemProperty(String propertyName) method in class:MQAddressList
/glassfish-3.1.2/jms/jms-core/src/main/java/com/sun/enterprise/connectors/jms/util/
H A DJmsRaUtil.java455 SystemProperty sp = as.getSystemProperty("JMS_PROVIDER_PORT");
460 sp = config.getSystemProperty("JMS_PROVIDER_PORT");

Completed in 236 milliseconds

12