Package com.sun.jini.test.share

Source Code of com.sun.jini.test.share.RemoteListener

/*
* 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.share;

import java.rmi.RemoteException;

import net.jini.core.event.RemoteEvent;
import net.jini.core.event.RemoteEventListener;
import net.jini.core.event.UnknownEventException;
import net.jini.export.Exporter;
import net.jini.security.proxytrust.ServerProxyTrust;
import net.jini.security.TrustVerifier;

import com.sun.jini.proxy.BasicProxyTrustVerifier;

import java.io.ObjectStreamException;
import java.io.Serializable;

import java.util.logging.Level;
import java.util.logging.Logger;



/**
* Remote listener impl to be sub-classed by a class which actually does work
*/
class RemoteListener implements RemoteEventListener,
                                ServerProxyTrust,
                                Serializable
{

    protected static Logger logger =
        Logger.getLogger("com.sun.jini.qa.harness");

    protected Object proxy;

    RemoteListener(Exporter exporter) throws RemoteException {
  proxy = exporter.export(this);
    }

    public Object writeReplace() throws ObjectStreamException {
  return proxy;
    }

    public synchronized void notify(RemoteEvent theEvent)
  throws UnknownEventException, RemoteException
    {
    }

    public TrustVerifier getProxyVerifier() {
  return new BasicProxyTrustVerifier(proxy);
    }
}
TOP

Related Classes of com.sun.jini.test.share.RemoteListener

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.