Rename applySubtreeChange()
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / NamespaceRevisionAware.java
1 package org.opendaylight.yangtools.yang.model.api;
2
3 import java.net.URI;
4 import java.util.Date;
5
6 /*
7  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
8  *
9  * This program and the accompanying materials are made available under the
10  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
11  * and is available at http://www.eclipse.org/legal/epl-v10.html
12  */
13 public interface NamespaceRevisionAware {
14
15     URI getNamespace();
16     Date getRevision();
17 }