
com.sun.messaging.PropertyOwner Maven / Gradle / Ivy
/*
* Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2021 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.sun.messaging;
/**
* The PropertyOwner
interface is implemented by any property that owns other properties. The property type
* of this property is com.sun.messaging.PropertyOwner
.
*
* Setting a property Type to com.sun.messaging.PropertyOwner
indicates that dependant property information
* can be obtained from the class via the interface methods described below.
*/
public interface PropertyOwner {
/**
* Returns a String array of property names that this PropertyOwner
owns.
*
* @return The String array of property names that this PropertyOwner
owns.
*/
String[] getPropertyNames();
/**
* Returns the type of a single owned property.
*
* @param propname The name of the owned property.
*
* @return The type of the owned property propname
. null
if the property propname
* is invalid.
*/
String getPropertyType(String propname);
/**
* Returns the label of a single owned property.
*
* @param propname The name of the owned property.
*
* @return The label of the owned property propname
. null
if the property
* propname
is invalid.
*/
String getPropertyLabel(String propname);
/**
* Returns the default value of a single owned property.
*
* @param propname The name of the owned property.
*
* @return The default value of the owned property propname
. null
if the property
* propname
is invalid.
*/
String getPropertyDefault(String propname);
}