Package org.apache.sshd.common.config
Class NamedResourceListParseResult<R extends NamedResource>
- java.lang.Object
-
- org.apache.sshd.common.config.ListParseResult<R>
-
- org.apache.sshd.common.config.NamedResourceListParseResult<R>
-
- Type Parameters:
R
- Type of resultNamedResource
- Direct Known Subclasses:
BuiltinDHFactories.ParseResult
public abstract class NamedResourceListParseResult<R extends NamedResource> extends ListParseResult<R>
- Author:
- Apache MINA SSHD Project
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
NamedResourceListParseResult(List<R> parsed, List<String> unsupported)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<R>
getParsedResources()
List<String>
getUnsupportedResources()
String
toString()
-
Methods inherited from class org.apache.sshd.common.config.ListParseResult
getParsedValues, getUnsupportedValues
-
-
-
-
Method Detail
-
getParsedResources
public final List<R> getParsedResources()
- Returns:
- The
List
of successfully parsedNamedResource
instances in the same order as they were encountered during parsing
-
getUnsupportedResources
public List<String> getUnsupportedResources()
- Returns:
- A
List
of unknown/unsupported configuration values for the resources
-
toString
public String toString()
- Overrides:
toString
in classListParseResult<R extends NamedResource>
-
-