Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/src/main/java/com/heuristiclab/okb/wsclient/admin/AlgorithmClass.java @ 5761

Last change on this file since 5761 was 5761, checked in by mholper, 13 years ago

first Unit-Test build against new AdministrationService #1441

File size: 973 bytes
Line 
1
2package com.heuristiclab.okb.wsclient.admin;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlType;
7
8
9/**
10 * <p>Java class for AlgorithmClass complex type.
11 *
12 * <p>The following schema fragment specifies the expected content contained within this class.
13 *
14 * <pre>
15 * &lt;complexType name="AlgorithmClass">
16 *   &lt;complexContent>
17 *     &lt;extension base="{http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration.DataTransfer}NamedOKBItem">
18 *       &lt;sequence>
19 *       &lt;/sequence>
20 *     &lt;/extension>
21 *   &lt;/complexContent>
22 * &lt;/complexType>
23 * </pre>
24 *
25 *
26 */
27@XmlAccessorType(XmlAccessType.FIELD)
28@XmlType(name = "AlgorithmClass", namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.Administration.DataTransfer")
29public class AlgorithmClass
30    extends NamedOKBItem
31{
32
33
34}
Note: See TracBrowser for help on using the repository browser.