X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=restconf%2Frestconf-nb-bierman02%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Frestconf%2Futils%2Fparser%2FParserFieldsParameter.java;h=2ba3f045615748d6c6522d2f712bace95ebfabfc;hb=824baf9fe14e31465c58f3842c4cb0aa88b34757;hp=a4b9217d2f768022828ac7e862b21f28eb59b693;hpb=297030dc32e29a3ac0c76aa3d6279e7e047532b3;p=netconf.git diff --git a/restconf/restconf-nb-bierman02/src/main/java/org/opendaylight/restconf/utils/parser/ParserFieldsParameter.java b/restconf/restconf-nb-bierman02/src/main/java/org/opendaylight/restconf/utils/parser/ParserFieldsParameter.java index a4b9217d2f..2ba3f04561 100644 --- a/restconf/restconf-nb-bierman02/src/main/java/org/opendaylight/restconf/utils/parser/ParserFieldsParameter.java +++ b/restconf/restconf-nb-bierman02/src/main/java/org/opendaylight/restconf/utils/parser/ParserFieldsParameter.java @@ -25,6 +25,12 @@ import org.opendaylight.yangtools.yang.data.util.DataSchemaContextNode; import org.opendaylight.yangtools.yang.model.api.DataSchemaNode; import org.opendaylight.yangtools.yang.model.api.SchemaContext; +/** + * Parameters parser. + * + * @deprecated move to splitted module restconf-nb-rfc8040 + */ +@Deprecated public class ParserFieldsParameter { private static final char COLON = ':'; private static final char SEMICOLON = ';'; @@ -112,7 +118,7 @@ public class ParserFieldsParameter { currentNode, input.substring(startPosition, currentPosition), currentQNameModule, currentLevel); // call with child node as new start node for one level down - int closingParenthesis = currentPosition + final int closingParenthesis = currentPosition + findClosingParenthesis(input.substring(currentPosition + 1)); parseInput( input.substring(currentPosition + 1, closingParenthesis),