Lines Matching defs:environment

128             Map<String, ?> environment) {
136 if (environment == null) {
139 EnvHelp.checkAttributes(environment);
140 this.env = Collections.unmodifiableMap(environment);
176 * @param environment additional attributes specifying how to make
185 public RMIConnector(JMXServiceURL url, Map<String,?> environment) {
186 this(null, url, environment);
193 * @param environment additional attributes specifying how to make
200 public RMIConnector(RMIServer rmiServer, Map<String,?> environment) {
201 this(rmiServer, null, environment);
246 public synchronized void connect(Map<String,?> environment)
268 if (environment != null) {
269 EnvHelp.checkAttributes(environment);
270 usemap.putAll(environment);
279 // client-side environment property is set to "true".
1687 * <p>This method looks in the provided <var>environment</var> for
1697 * in the <var>environment</var> map, if any.
1700 * @param environment An environment map, possibly containing an ORB.
1708 Map<String, ?> environment)
1715 IIOPHelper.connect(rmiServer, resolveOrb(environment));
1722 * Get the ORB specified by <var>environment</var>, or create a
1724 * <p>This method looks in the provided <var>environment</var> for
1734 * in the <var>environment</var> map, if any.
1735 * @param environment An environment map, possibly containing an ORB.
1742 static Object resolveOrb(Map<String, ?> environment)
1744 if (environment != null) {
1745 final Object orb = environment.get(EnvHelp.DEFAULT_ORB);
1786 * before serializing it. This is done using the environment
1793 * <p>Note that the environment Map is not serialized, since the objects
1795 * with respect to the local environment (class loader, ORB, etc...).</p>
1799 * local environment.</p>
1880 Map<String, Object> environment)
1885 environment.put(EnvHelp.DEFAULT_ORB,resolveOrb(environment));
1892 return findRMIServerJNDI(path.substring(6,end), environment, isIiop);
1894 return findRMIServerJRMP(path.substring(6,end), environment, isIiop);
1898 return findRMIServerIIOP(path.substring(5,end), environment, isIiop);
1914 * @param env the environment Map passed to the connector.