/* * 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.yangtools.yang.model.api; import java.net.URI; import java.util.Date; public interface ModuleIdentifier { /** * Returns the namespace of the module which is specified as argument of * YANG {@link Module namespace} * keyword. * * @return URI format of the namespace of the module */ URI getNamespace(); /** * Returns the name of the module which is specified as argument of YANG * {@link Module module} keyword * * @return string with the name of the module */ String getName(); /** * Returns the revision date for the module. * * @return date of the module revision which is specified as argument of * YANG {@link Module revison} * keyword */ Date getRevision(); }