/******************************************************************************* * Copyright (c) 2004, 2007-2008 IBM Corporation and Cambridge Semantics Incorporated. * 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 * * File: $Source$ * Created by: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Created on: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Revision: $Id$ * * Contributors: * IBM Corporation - initial API and implementation * Cambridge Semantics Incorporated - Fork to Anzo *******************************************************************************/ package org.openanzo.ontologies.openanzo; /** * Interface for AnzoServer ontology class<br> * Use the org.openanzo.ontologies.openanzo.AnzoFactory to create instances of this interface. * <p>(URI: http://openanzo.org/ontologies/2008/07/Anzo#AnzoServer)</p> * <br> * RDF Schema Standard Properties <br> * comment : Anzo Server <br> * <br> * <br> */ @SuppressWarnings("all") public interface AnzoServer extends org.openanzo.rdf.jastor.Thing { /** * The rdf:type for this ontology class */ public static final org.openanzo.rdf.URI TYPE = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://openanzo.org/ontologies/2008/07/Anzo#AnzoServer"); /** * The Anzo Property for serverId * <p>(URI: http://openanzo.org/ontologies/2008/07/Anzo#serverId)</p> * <br> * <br> * RDF Schema Standard Properties <br> * comment : A unique uri for server's id <br> * <br> */ public static org.openanzo.rdf.URI serverIdProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://openanzo.org/ontologies/2008/07/Anzo#serverId"); /** * The Anzo Property for uriPrefix * <p>(URI: http://openanzo.org/ontologies/2008/07/Anzo#uriPrefix)</p> * <br> * <br> * RDF Schema Standard Properties <br> * comment : Prefix for service URI prefixes <br> * <br> */ public static org.openanzo.rdf.URI uriPrefixProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://openanzo.org/ontologies/2008/07/Anzo#uriPrefix"); /** * Gets the 'serverId' property value from the given graph * @return {@link org.openanzo.rdf.URI} * @see #serverIdProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.URI getServerId() throws org.openanzo.rdf.jastor.JastorException; /** * Gets the 'serverId' property value * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link org.openanzo.rdf.URI} * @see #serverIdProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.URI getServerId(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Sets the 'serverId' property value * @param serverId {@link org.openanzo.rdf.URI}, the value to set * @see #serverIdProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void setServerId(org.openanzo.rdf.URI serverId) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for 'serverId'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #serverIdProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clearServerId(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Gets the 'uriPrefix' property value from the given graph * @return {@link java.lang.String} * @see #uriPrefixProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.lang.String getUriPrefix() throws org.openanzo.rdf.jastor.JastorException; /** * Gets the 'uriPrefix' property value * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link java.lang.String} * @see #uriPrefixProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.lang.String getUriPrefix(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Sets the 'uriPrefix' property value * @param uriPrefix {@link java.lang.String}, the value to set * @see #uriPrefixProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void setUriPrefix(java.lang.String uriPrefix) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for 'uriPrefix'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #uriPrefixProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clearUriPrefix(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; }