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
public abstract class NamedResourceListParseResult<R extends NamedResource> extends ListParseResult<R>
- Author:
- Apache MINA SSHD Project
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedNamedResourceListParseResult(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()StringtoString()-
Methods inherited from class org.apache.sshd.common.config.ListParseResult
getParsedValues, getUnsupportedValues
-
-
-
-
Method Detail
-
getParsedResources
public final List<R> getParsedResources()
- Returns:
- The
Listof successfully parsedNamedResourceinstances in the same order as they were encountered during parsing
-
getUnsupportedResources
public List<String> getUnsupportedResources()
- Returns:
- A
Listof unknown/unsupported configuration values for the resources
-
toString
public String toString()
- Overrides:
toStringin classListParseResult<R extends NamedResource>
-
-