Searched refs:system (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationGroupID.java33 * <li>identifies the group uniquely within the activation system, and
34 * <li>contains a reference to the group's activation system so that the
35 * group can contact its activation system when necessary.</ul><p>
39 * the group within the activation system. This group id is passed
50 * @serial The group's activation system.
52 private ActivationSystem system; field in class:ActivationGroupID
65 * @param system the group's activation system
68 public ActivationGroupID(ActivationSystem system) { argument
69 this.system
[all...]
H A DActivatable.java42 * can be activated by the system.
94 * a) registering the object with the activation system or b) exporting
144 * a) registering the object with the activation system or b) exporting
239 * is not registered with the activation system
240 * @exception ActivationException if activation system is not running
254 * Informs the system that the object with the corresponding activation
291 * @exception ActivationException if activation system is not running
292 * @exception RemoteException if remote call to activation system fails
333 * descriptor, <code>desc</code>, with the activation system
364 * specified object as follows. It obtains the activation system b
[all...]
H A DActivationGroup.java74 * <code>ActivationGroup</code> will override the system properties
77 * <code>java.rmi.RMISecurityManager</code> as the default system
121 /** the current group's activation system */
376 * Set the activation system for the VM. The activation system can
378 * system is not set via this call, then the <code>getSystem</code>
383 * activation system is defined by
391 * @param system remote reference to the <code>ActivationSystem</code>
392 * @exception ActivationException if activation system is already set
393 * @exception SecurityException if permission to set the activation system i
401 setSystem(ActivationSystem system) argument
[all...]
/openjdk7/jdk/test/java/rmi/activation/ActivationSystem/activeGroup/
H A DIdempotentActiveGroup.java68 ActivationSystem system = ActivationGroup.getSystem();
70 ActivationGroupID groupID = system.registerGroup(groupDesc);
75 system.activeGroup(groupID, inst1, 0);
79 system.activeGroup(groupID, inst2, 0);
89 system.activeGroup(groupID, inst1, 0);
/openjdk7/jdk/test/java/rmi/activation/ActivationSystem/modifyDescriptor/
H A DModifyDescriptor.java125 ActivationSystem system = ActivationGroup.getSystem();
126 ActivationGroupID groupID = system.registerGroup(initialGroupDesc);
171 ActivationDesc oldDesc = system.setActivationDesc(id, newDesc);
192 system.setActivationGroupDesc(groupID, newGroupDesc);
231 ActivationDesc latestDesc = system.getActivationDesc(id);
241 system.getActivationGroupDesc(groupID);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DXSLOutputAttributes.java42 * doctype-system
68 * as the system identifier in the document type declaration (DTD).
69 * @return the system identifier to be used in the DOCTYPE declaration in
129 /** Set the value coming from the xsl:output doctype-public and doctype-system stylesheet properties
130 * @param system the system identifier to be used in the DOCTYPE declaration
135 public void setDoctype(String system, String pub); argument
142 /** Set the value coming from the xsl:output doctype-system stylesheet attribute.
143 * @param doctype the system identifier to be used in the DOCTYPE
/openjdk7/jdk/test/java/rmi/activation/ActivationSystem/unregisterGroup/
H A DUnregisterGroup.java93 ActivationSystem system = ActivationGroup.getSystem();
95 system.registerGroup(groupDesc);
111 system.unregisterGroup(groupID);
115 system.getActivationGroupDesc(groupID);
/openjdk7/jdk/src/solaris/sample/dtrace/helpers/
H A Ddtrace_helper.d53 * The -Z option requires Solaris patch 118822-30 installed on your system.
85 system("(%s -p %d) &", $1, $target);
/openjdk7/jdk/test/java/rmi/activation/Activatable/checkImplClassLoader/
H A DCheckImplClassLoader.java85 ActivationSystem system = ActivationGroup.getSystem();
86 ActivationGroupID groupID = system.registerGroup(groupDesc);
/openjdk7/jdk/test/java/rmi/activation/Activatable/lookupActivationSystem/
H A DLookupActivationSystem.java28 * activation system
57 System.err.println("look up activation system");
60 ActivationSystem system = (ActivationSystem)
63 if (system instanceof ActivationSystem) {
71 "test2 passed: activation system found in list");
/openjdk7/jdk/test/java/rmi/activation/Activatable/unregisterInactive/
H A DUnregisterInactive.java106 ActivationSystem system = ActivationGroup.getSystem();
107 ActivationGroupID groupID = system.registerGroup(groupDesc);
/openjdk7/jdk/test/java/rmi/activation/Activatable/shutdownGracefully/
H A DShutdownGracefully.java99 ActivationSystem system = ActivationGroup.getSystem();
100 ActivationGroupID groupID = system.registerGroup(groupDesc);
131 system.registerGroup(groupDesc);
/openjdk7/jdk/test/java/rmi/activation/Activatable/checkRegisterInLog/
H A DCheckRegisterInLog.java95 * Start up activation system daemon "rmid".
120 ActivationSystem system = ActivationGroup.getSystem();
121 ActivationGroupID groupID = system.registerGroup(groupDesc);
/openjdk7/jdk/test/java/rmi/activation/Activatable/createPrivateActivable/
H A DCreatePrivateActivatable.java123 ActivationSystem system = ActivationGroup.getSystem();
124 ActivationGroupID groupID = system.registerGroup(groupDesc);
/openjdk7/jdk/test/java/rmi/activation/Activatable/elucidateNoSuchMethod/
H A DElucidateNoSuchMethod.java107 ActivationSystem system = ActivationGroup.getSystem();
108 ActivationGroupID groupID = system.registerGroup(groupDesc);
/openjdk7/jdk/test/java/rmi/activation/Activatable/nonExistentActivatable/
H A DNonExistentActivatable.java107 ActivationSystem system = ActivationGroup.getSystem();
108 ActivationGroupID groupID = system.registerGroup(groupDesc);
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DEchoImpl.java126 ActivationSystem system = ActivationGroup.getSystem();
127 ActivationGroupID groupID = system.registerGroup(groupDesc);
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DMarshalInputStream.java93 * the classpath by RMI system code and not by the normal
105 String system =
109 permittedSunClasses.put(system, Class.forName(system));
113 throw new NoClassDefFoundError("Missing system class: " +
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/utils/
H A DObjectFactory.java86 * <li>query the system property using <code>System.getProperty</code>
109 * <li>query the system property using <code>System.getProperty</code>
136 // Use the system property first
140 if (DEBUG) debugPrintln("found system property, value=" + systemProp);
197 ClassLoader system = SecuritySupport.getSystemClassLoader();
199 ClassLoader chain = system;
203 // or any Context ClassLoader in chain of system classloader
205 // ClassLoader (always look in system ClassLoader if Xerces
206 // is in boot/extension/system classpath and in current
208 // back to system ClassLoade
[all...]
/openjdk7/jdk/test/java/rmi/testlibrary/
H A DRMID.java240 * activation system will use the property to determine the
241 * port #. The activation system will use this value if set.
242 * If it isn't set, the activation system will set it to an
273 ActivationSystem system = null;
276 mesg("getting a reference to the activation system");
277 system = (ActivationSystem) Naming.lookup("//:" +
280 mesg("obtained a reference to the activation system");
282 mesg("could not contact registry while trying to shutdown activation system");
286 if (system == null) {
287 TestLibrary.bomb("reference to the activation system wa
[all...]
/openjdk7/jdk/test/java/rmi/activation/Activatable/checkActivateRef/
H A DCheckActivateRef.java139 ActivationSystem system = ActivationGroup.getSystem();
140 ActivationGroupID groupID = system.registerGroup(groupDesc);
/openjdk7/jdk/test/java/rmi/activation/Activatable/checkAnnotations/
H A DCheckAnnotations.java94 ActivationSystem system = ActivationGroup.getSystem();
95 ActivationGroupID groupID = system.registerGroup(groupDesc);
/openjdk7/jdk/test/java/rmi/activation/ActivationSystem/stubClassesPermitted/
H A DStubClassesPermitted.java45 * The RMI activation system needs to explicitly allow itself to
53 * The test causes the activation system to need to create each of
54 * these classes in turn. The test will fail if the activation system
113 ActivationSystem system = ActivationGroup.getSystem();
114 ActivationGroupID groupID = system.registerGroup(groupDesc);
153 // just passing a reference to the activation system
239 * system implementation).
/openjdk7/jdk/test/java/rmi/activation/rmidViaInheritedChannel/
H A DInheritedChannelNotServerSocket.java108 * Get activation system and wait to be notified via callback
111 System.err.println("get activation system");
112 ActivationSystem system = ActivationGroup.getSystem();
113 System.err.println("ActivationSystem = " + system);
H A DRmidViaInheritedChannel.java94 * Get activation system and wait to be notified via callback
97 System.err.println("get activation system");
98 ActivationSystem system = ActivationGroup.getSystem();
99 System.err.println("ActivationSystem = " + system);

Completed in 166 milliseconds

12