Package com.sun.jini.test.impl.outrigger.leasing

Source Code of com.sun.jini.test.impl.outrigger.leasing.LeasedSpaceListener

/*
* 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.impl.outrigger.leasing;

// java classes
import java.rmi.RemoteException;
import java.rmi.MarshalledObject;
import java.io.Serializable;
import java.io.ObjectStreamException;

// jini classes
import net.jini.core.event.RemoteEvent;
import net.jini.core.event.RemoteEventListener;
import net.jini.core.event.EventRegistration;
import net.jini.core.event.UnknownEventException;
import net.jini.core.entry.Entry;

import net.jini.config.Configuration;
import net.jini.config.ConfigurationException;
import net.jini.export.Exporter;
import net.jini.security.TrustVerifier;
import net.jini.security.proxytrust.ServerProxyTrust;

import com.sun.jini.proxy.BasicProxyTrustVerifier;

import com.sun.jini.qa.harness.QAConfig;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
* Listener that calls notifyAll on itself
*/
public class LeasedSpaceListener
    implements RemoteEventListener, ServerProxyTrust, Serializable
{
    private static Logger logger = Logger.getLogger("com.sun.jini.qa.harness");
    public boolean received = false;
    private Object proxy;

    public LeasedSpaceListener(Configuration c) throws RemoteException {
  try {
      Exporter exporter = QAConfig.getDefaultExporter();
      if (c instanceof com.sun.jini.qa.harness.QAConfiguration) {
    exporter =
    (Exporter) c.getEntry("test",
              "outriggerListenerExporter",
              Exporter.class);
      }
      proxy = exporter.export(this);
  } catch (ConfigurationException e) {
      throw new RemoteException("Bad configuration", e);
  }
    }

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

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

    public synchronized void notify(RemoteEvent theEvent)
            throws UnknownEventException, RemoteException {
  logger.log(Level.FINEST, "notify called at " + (new java.util.Date()));
        received = true;
        this.notifyAll();
    }
}
TOP

Related Classes of com.sun.jini.test.impl.outrigger.leasing.LeasedSpaceListener

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.