X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-cli%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fcli%2Fcommands%2Finput%2FInputDefinition.java;fp=opendaylight%2Fnetconf%2Fnetconf-cli%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fcli%2Fcommands%2Finput%2FInputDefinition.java;h=83e1b1939178931904b8dc9f8eceb69b574f4373;hp=0000000000000000000000000000000000000000;hb=b3d2a00776a1a5e3a139d73ced859aa557c931af;hpb=d04e0863b86415749a8437241c57df0d32a3b133 diff --git a/opendaylight/netconf/netconf-cli/src/main/java/org/opendaylight/controller/netconf/cli/commands/input/InputDefinition.java b/opendaylight/netconf/netconf-cli/src/main/java/org/opendaylight/controller/netconf/cli/commands/input/InputDefinition.java new file mode 100644 index 0000000000..83e1b19391 --- /dev/null +++ b/opendaylight/netconf/netconf-cli/src/main/java/org/opendaylight/controller/netconf/cli/commands/input/InputDefinition.java @@ -0,0 +1,37 @@ +/* + * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ +package org.opendaylight.controller.netconf.cli.commands.input; + +import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode; + +/** + * The definition of input arguments represented by schema nodes parsed from + * yang rpc definition + */ +public class InputDefinition { + + private final ContainerSchemaNode inputContainer; + + public InputDefinition(final ContainerSchemaNode inputContainer) { + this.inputContainer = inputContainer; + } + + public static InputDefinition fromInput(final ContainerSchemaNode input) { + return new InputDefinition(input); + } + + public ContainerSchemaNode getInput() { + return inputContainer; + } + + // FIXME add empty as in output + public boolean isEmpty() { + return inputContainer == null; + } + +}