Interface PropertyReader
-
- All Superinterfaces:
BaseReader
- All Known Implementing Classes:
PropertyReaderImpl
public interface PropertyReader extends BaseReader
Provides property information relavant to Load balancer tier.- Author:
- Satish Viswanatham
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Returns description of the propertyStringgetName()Returns name of the propertyStringgetValue()Returns value of the property-
Methods inherited from interface org.glassfish.loadbalancer.admin.cli.reader.api.BaseReader
accept
-
-
-
-
Method Detail
-
getName
String getName() throws LbReaderException
Returns name of the property- Returns:
- String name of the property
- Throws:
LbReaderException
-
getValue
String getValue() throws LbReaderException
Returns value of the property- Returns:
- String name of the value
- Throws:
LbReaderException
-
getDescription
String getDescription() throws LbReaderException
Returns description of the property- Returns:
- String description of the property
- Throws:
LbReaderException
-
-