Changeset 3914
- Timestamp:
- Nov 6, 2007, 10:51:40 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r3908 r3914 1067 1067 <path refid="core.classpath" /> 1068 1068 <fileset dir="${lib}/servlet"> 1069 <include name="**/*.jar"/> 1070 </fileset> 1071 <fileset dir="${lib}/webservices"> 1069 1072 <include name="**/*.jar"/> 1070 1073 </fileset> -
trunk/doc/src/docbook/developerdoc/webservices.xml
r3907 r3914 54 54 <para> 55 55 Base offers a way for services to allow the client applications to put their own 56 includes and restrictions on a query before it is executed. 56 includes and restrictions on a query before it is executed. For those who intend 57 to develop services it is recommended to have a look in javadoc for 58 <classname>net.sf.basedb.ws.info.QueryOptions</classname> 57 59 </para> 58 60 </listitem> … … 64 66 <para> 65 67 Web services can, at the moment, be used to provide some information and data related to 66 experiments in BASE, like information about raw bioassays or exported bioassay set . This67 section lists all the available services in Base and gives a short description of what each68 one can be used to.68 experiments in BASE, like information about raw bioassays or exported bioassay set to 69 mention some. This section lists all the available services in Base and gives a short 70 description of each one. 69 71 </para> 70 72 … … 84 86 <para> 85 87 Creates a new session and returns it's id. Before a session can 86 be used you have to login with it , see below.88 be used you have to login with it. 87 89 </para> 88 90 <important> … … 112 114 <listitem> 113 115 <para> 114 Logout and stop an active session in Base.116 Logout and stops an active session in Base. 115 117 </para> 116 118 </listitem> … … 163 165 <listitem> 164 166 <para> 165 Sets a project to be active. This will bethe same as when a167 Sets a project to be active. This is the same as when a 166 168 project is set to be active in the web client, see 167 169 <xref linkend="project_permission.projects.active" /> … … 176 178 <listitem> 177 179 <para> 178 Gets information about each project theactive session has180 Gets information about each project an active session has 179 181 permission to read. 180 182 </para> -
trunk/src/webservices/client/java/net/sf/basedb/ws/info/QueryOptions.java
r3908 r3914 30 30 It is which items to include in the query 31 31 and which restriction to put on the query. 32 <p> 33 The includes in this class correspond 34 directly to the includes in 35 {@link net.sf.basedb.core.Include}. 36 The include options will be set to TRUE if nothing 37 else is specified. 38 </p> 39 32 40 @author Martin 33 41 @version 2.5 … … 64 72 /** 65 73 A restriction to set on 66 the query. 74 the query. 67 75 */ 68 76 private String restriction = null; … … 70 78 /** 71 79 The prefix that represent a root alias in 72 a query. 80 a query. This string can be used in {{@link #restriction} 81 and will be replaced when the restriction is 82 inserted into a HQL query. 73 83 */ 74 84 private String prefix = null; … … 198 208 } 199 209 /** 200 Sets restriction for this query option 210 Sets restriction for these query options. 211 <p> 212 The string must be in right format so it can be inserted 213 directly into a hql query. The restriction string 214 can contain a prefix, but it has to be set separatly 215 {@link #setRestrictionPrefix(String)}. 216 </p> 217 <p> 218 Example how this property can be used together with the prefix:<br> 219 <i>$name='item1'</i> <br> 220 When this string is used in a query, ie that select users, it will look like this: 221 <i>usr.name='item1'</i>.<br> 222 </p> 223 201 224 @param restriction A restriction as a string to use with HQL queries. 202 225 */ -
trunk/src/webservices/server/net/sf/basedb/ws/server/RawBioAssayService.java
r3876 r3914 46 46 /** 47 47 Web service class for 48 {@ net.sf.basedb.core.RawBioAssay}48 {@link net.sf.basedb.core.RawBioAssay} 49 49 @author Martin 50 50 @version 2.5
Note: See TracChangeset
for help on using the changeset viewer.