< prev index next >

test/java/rmi/activation/Activatable/checkAnnotations/CheckAnnotations.java

Print this page




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4109103
  26  * @summary rmid should annotate child process output
  27  *
  28  * @author Laird Dornin; code borrowed from Ann Wollrath
  29  *
  30  * @library ../../../testlibrary




  31  * @build TestLibrary RMID MyRMI CheckAnnotations_Stub
  32  * @run main/othervm/policy=security.policy/timeout=480 CheckAnnotations
  33  */
  34 
  35 import java.io.*;
  36 import java.rmi.*;
  37 import java.rmi.server.*;
  38 import java.rmi.activation.*;
  39 import java.security.CodeSource;
  40 import java.util.Properties;
  41 import java.util.StringTokenizer;
  42 
  43 
  44 public class CheckAnnotations
  45     extends Activatable implements MyRMI, Runnable
  46 {
  47 
  48     private static Object dummy = new Object();
  49     private static MyRMI myRMI = null;
  50 




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4109103
  26  * @summary rmid should annotate child process output
  27  *
  28  * @author Laird Dornin; code borrowed from Ann Wollrath
  29  *
  30  * @library ../../../testlibrary
  31  * @modules java.rmi/sun.rmi.registry
  32  *          java.rmi/sun.rmi.server
  33  *          java.rmi/sun.rmi.transport
  34  *          java.rmi/sun.rmi.transport.tcp
  35  * @build TestLibrary RMID MyRMI CheckAnnotations_Stub
  36  * @run main/othervm/policy=security.policy/timeout=480 CheckAnnotations
  37  */
  38 
  39 import java.io.*;
  40 import java.rmi.*;
  41 import java.rmi.server.*;
  42 import java.rmi.activation.*;
  43 import java.security.CodeSource;
  44 import java.util.Properties;
  45 import java.util.StringTokenizer;
  46 
  47 
  48 public class CheckAnnotations
  49     extends Activatable implements MyRMI, Runnable
  50 {
  51 
  52     private static Object dummy = new Object();
  53     private static MyRMI myRMI = null;
  54 


< prev index next >