/******************************************************************************* * 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.system; /** * Interface for Datasource capability ontology class<br> * Use the org.openanzo.ontologies.system.SystemFactory to create instances of this interface. * <p>(URI: http://openanzo.org/ontologies/2008/07/System#DatasourceCapability)</p> * <br> * RDF Schema Standard Properties <br> * label : Datasource capability <br> * <br> * <br> */ @SuppressWarnings("all") public interface DatasourceCapability 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/System#DatasourceCapability"); /** * The Anzo Property for capabilityService * <p>(URI: http://openanzo.org/ontologies/2008/07/System#capabilityService)</p> * <br> * <br> * RDF Schema Standard Properties <br> * label : Capability service <br> * comment : The services used to supply this capability, if any <br> * <br> */ public static org.openanzo.rdf.URI capabilityServiceProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://openanzo.org/ontologies/2008/07/System#capabilityService"); /** * Individual for URI: http://openanzo.org/ontologies/2008/07/System#DatasourceRead */ public static org.openanzo.rdf.URI DatasourceRead = org.openanzo.rdf.MemURI.create("http://openanzo.org/ontologies/2008/07/System#DatasourceRead"); /** * Individual for URI: http://openanzo.org/ontologies/2008/07/System#DatasourceUpdate */ public static org.openanzo.rdf.URI DatasourceUpdate = org.openanzo.rdf.MemURI.create("http://openanzo.org/ontologies/2008/07/System#DatasourceUpdate"); /** * Individual for URI: http://openanzo.org/ontologies/2008/07/System#DatasourceQuery */ public static org.openanzo.rdf.URI DatasourceQuery = org.openanzo.rdf.MemURI.create("http://openanzo.org/ontologies/2008/07/System#DatasourceQuery"); /** * Individual for URI: http://openanzo.org/ontologies/2008/07/System#DatasourceEvents */ public static org.openanzo.rdf.URI DatasourceEvents = org.openanzo.rdf.MemURI.create("http://openanzo.org/ontologies/2008/07/System#DatasourceEvents"); /** * Get an Iterator the 'capabilityService' property values. This Iteartor * may be used to remove all such values. * @return {@link java.util.Collection} of {@link org.openanzo.ontologies.system.Service} * @see #capabilityServiceProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.ontologies.system.Service> getCapabilityService() throws org.openanzo.rdf.jastor.JastorException; /** * Get an Iterator the 'capabilityService' property values. This Iteartor * may be used to remove all such values. * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link java.util.Collection} of {@link org.openanzo.ontologies.system.Service} * @see #capabilityServiceProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.ontologies.system.Service> getCapabilityService(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'capabilityService' property * @param capabilityService The {@link org.openanzo.ontologies.system.Service} to add * @see #capabilityServiceProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void addCapabilityService(org.openanzo.ontologies.system.Service capabilityService) throws org.openanzo.rdf.jastor.JastorException; /** * Adds an anonymous value for the 'capabilityService' property * @return The anoymous {@link org.openanzo.ontologies.system.Service} created * @see #capabilityServiceProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.ontologies.system.Service addCapabilityService() throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'capabilityService' property. This * method is equivalent constructing a new instance of {@link org.openanzo.ontologies.system.Service} with the factory * and calling addCapabilityService(org.openanzo.ontologies.system.Service capabilityService) * The resource argument have rdf:type http://openanzo.org/ontologies/2008/07/System#Service. That is, this method * should not be used as a shortcut for creating new objects in the model. * @param resource The {@link org.openanzo.rdf.Resource} to add * @return org.openanzo.ontologies.system.Service, value added * @see #capabilityServiceProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.ontologies.system.Service addCapabilityService(org.openanzo.rdf.Resource resource) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'capabilityService' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param capabilityService The {@link org.openanzo.ontologies.system.Service} to remove * @see #capabilityServiceProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeCapabilityService(org.openanzo.ontologies.system.Service capabilityService) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'capabilityService' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param capabilityService The {@link org.openanzo.rdf.Resource} to remove * @see #capabilityServiceProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeCapabilityService(org.openanzo.rdf.Resource capabilityService) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for 'capabilityService'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #capabilityServiceProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clearCapabilityService(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; }