groundings;
+
+}
Index: src/nongnu/cashews/owls/service/ServiceGrounding.java
===================================================================
RCS file: src/nongnu/cashews/owls/service/ServiceGrounding.java
diff -N src/nongnu/cashews/owls/service/ServiceGrounding.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/nongnu/cashews/owls/service/ServiceGrounding.java 31 Mar 2005 17:08:42 -0000
@@ -0,0 +1,35 @@
+/* ServiceGrounding.java -- Representation of an OWL-S service grounding.
+ Copyright (C) 2005 The University of Sheffield.
+
+ This file is part of the CASheW-s editor.
+
+ The CASheW-s editor is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ The CASheW-s editor is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with The CASheW-s editor; see the file COPYING. If not, write to the
+ Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA.
+*/
+
+package nongnu.cashews.owls.service;
+
+/**
+ * The service grounding tells agents how to use the service. Typically,
+ * this is via some service protocol, such as SOAP, HTTP FORM-FORM or
+ * CORBA IDL, and specific details, such as port numbers.
+ *
+ * @author Andrew John Hughes (address@hidden)
+ * @see Service
+ */
+public class ServiceGrounding
+{
+
+}
Index: src/nongnu/cashews/owls/service/ServiceModel.java
===================================================================
RCS file: src/nongnu/cashews/owls/service/ServiceModel.java
diff -N src/nongnu/cashews/owls/service/ServiceModel.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/nongnu/cashews/owls/service/ServiceModel.java 31 Mar 2005 17:08:42 -0000
@@ -0,0 +1,50 @@
+/* ServiceModel.java -- Representation of an OWL-S service model.
+ Copyright (C) 2005 The University of Sheffield.
+
+ This file is part of the CASheW-s editor.
+
+ The CASheW-s editor is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ The CASheW-s editor is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with The CASheW-s editor; see the file COPYING. If not, write to the
+ Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA.
+*/
+
+package nongnu.cashews.owls.service;
+
+/**
+ *
+ * The service model describes how the service works. This may
+ * be used by agents in a variety of ways:
+ *
+ *
+ * -
+ * For a more in-depth function analysis than that provided by the profile
+ *
+ * -
+ * To compose multiple service descriptions
+ *
+ * -
+ * To co-ordinate participants during a service enactment
+ *
+ * -
+ * To monitor service execution
+ *
+ *
+ *
+ * @author Andrew John Hughes (address@hidden)
+ * @see Service
+ */
+public class ServiceModel
+{
+
+}
Index: src/nongnu/cashews/owls/service/ServiceProfile.java
===================================================================
RCS file: src/nongnu/cashews/owls/service/ServiceProfile.java
diff -N src/nongnu/cashews/owls/service/ServiceProfile.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/nongnu/cashews/owls/service/ServiceProfile.java 31 Mar 2005 17:08:42 -0000
@@ -0,0 +1,35 @@
+/* ServiceProfile.java -- Representation of an OWL-S service profile.
+ Copyright (C) 2005 The University of Sheffield.
+
+ This file is part of the CASheW-s editor.
+
+ The CASheW-s editor is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ The CASheW-s editor is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with The CASheW-s editor; see the file COPYING. If not, write to the
+ Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA.
+*/
+
+package nongnu.cashews.owls.service;
+
+/**
+ * The service profile advertises the service and tells agents what it
+ * does. Using the service profile, an agent can determine whether the
+ * service is useful or not.
+ *
+ * @author Andrew John Hughes (address@hidden)
+ * @see Service
+ */
+public class ServiceProfile
+{
+
+}