1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
/*
* Copyright (c) 1998, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.platform.xml;
// JDK imports
import java.net.URL;
/**
* A schema reference is used to access a schema in order to validate a
* document.
*/
public interface XMLSchemaReference {
public static final int COMPLEX_TYPE = 1;
public static final int SIMPLE_TYPE = 2;
public static final int ELEMENT = 3;
public static final int GROUP = 5;
/**
* Returns the path to be traversed for validation purposes.
*
* @return a string represented the path to be traversed
*/
public String getSchemaContext();
/**
* Indicates if the schema reference references a simple type definition,
* complex type definition, element or group
*
* @return COMPLEX_TYPE=1, SIMPLE_TYPE=2, ELEMENT=3, GROUP=5
*/
public int getType();
/**
* A URL which referenes the Schema.
*
* @return the schema URL
*/
public URL getURL();
}
|