net.jini.lookup.entry.EntryBean Maven / Gradle / Ivy
The newest version!
/*
* 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 net.jini.lookup.entry;
import net.jini.core.entry.Entry;
/**
* Interface to be implemented by all JavaBeans(TM) components that act
* as "front ends" to Entry classes. Such components must follow several
* patterns:
*
*
* - The component's name is derived from the name of the Entry class,
* with "Bean" appended. Thus, the JavaBeans component for the
* foo.Bar Entry class is foo.BarBean.
*
*
- The component has a public no-arg constructor; this creates a new,
* uninitialized, instance of the JavaBeans component's Entry class.
*
*
- For each public object field foo in the
* associated class, the JavaBeans component has both a setFoo
* and a getFoo method. The former returns the
* value of that field in the linked Entry object, and the latter sets the
* value of that field.
*
*
*
* @author Sun Microsystems, Inc.
*
* @see net.jini.core.entry.Entry
*/
public interface EntryBean {
/**
* Make a link to an Entry object.
*
* @param e the Entry object to link to
* @exception java.lang.ClassCastException the Entry is not of the
* correct type for this JavaBeans component
*/
void makeLink(Entry e);
/**
* Return the Entry linked to by this JavaBeans component.
* @return the entry linked to by this JavaBeans component.
*/
Entry followLink();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy