/* * Copyright (c) 2013 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.model.api.type; import java.util.List; import org.opendaylight.controller.yang.model.api.TypeDefinition; /** * The binary built-in type represents any binary data, i.e., a sequence of * octets.
*
* Binary values are encoded with the base64 encoding scheme (see [RFC4648], Section * 4).
* The canonical form of a binary value follows the rules in [RFC4648]. * *
*
* This interface was modeled according to definition in [RFC-6020] The binary * Built-In Type * */ public interface BinaryTypeDefinition extends TypeDefinition { /** * Returns List of number of octets that binary value contains. * * @return List of number of octets that binary value contains. * * @see LengthConstraint */ public List getLengthConstraints(); }