Package com.sun.jini.test.spec.jrmp.util

Source Code of com.sun.jini.test.spec.jrmp.util.TestRemoteObject

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.sun.jini.test.spec.jrmp.util;

import java.util.logging.Level;

// java.io
import java.io.Serializable;

// java.rmi
import java.rmi.Remote;
import java.rmi.RemoteException;

// java.util
import java.util.Collection;
import java.util.Iterator;

// com.sun.jini
import net.jini.io.context.ClientHost;
import net.jini.jrmp.JrmpServerContext;


/**
* Simple class implementing Remote interface for constructing remote objects.
*/
public class TestRemoteObject implements TestRemoteInterface {

    /** Name id. */
    public String name;

    /**
     * Default constructor.
     * name field is set to <code>null</code>.
     */
    public TestRemoteObject() {
        name = null;
    }

    /**
     * Creates a new TestRemoteObject with the given name.
     *
     * @param name desired name for new TestRemoteObject.
     */
    public TestRemoteObject(String name) {
        this.name = name;
    }

    /**
     * Checks getServerContext method of JrmpServerContext
     *
     * @return true if JRMP calls are in progress or false otherwise
     */
    public Boolean checkGetServerContext() throws RemoteException {
        JrmpServerContext jsc = new JrmpServerContext();
        Object obj = jsc.getServerContext();

        if (obj != null && obj instanceof Collection) {
            for (Iterator iter = ((Collection) obj).iterator();
                    iter.hasNext(); ) {
                Object el = iter.next();

                if (el instanceof ClientHost) {
                    Object res = ((ClientHost) el).getClientHost();

                    if (res != null) {
                        return new Boolean(true);
                    }
                    return new Boolean(false);
                }
            }
        }
        return new Boolean(false);
    }

    /**
     * Wait for a specified time and then return.
     *
     * @param duration period of time for waiting in milliseconds
     */
    public void wait(Integer duration) throws RemoteException {
        try {
            Thread.sleep(duration.intValue());
        } catch (InterruptedException ie) {}
    }

    /**
     * Creates the string representation of this TestRemoteObject.
     *
     * @return The string representation.
     */
    public String toString() {
        return "TestRemoteObject: [name = " + name + "]";
    }
}
TOP

Related Classes of com.sun.jini.test.spec.jrmp.util.TestRemoteObject

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.