Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/src/main/java/com/heuristiclab/okb/ECJConnectorState.java @ 5761

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

added and mirgrated old java connector project

Added 4 new WSDL Files #1441

File size: 772 bytes
Line 
1package com.heuristiclab.okb;
2
3public class ECJConnectorState {
4  private Long platformId;
5  private Long problemId;
6  private Long algorithmId;
7  public Long getPlatformId() {
8    return platformId;
9  }
10  public void setPlatformId(Long platformId) {
11    this.platformId = platformId;
12  }
13  public Long getProblemId() {
14    return problemId;
15  }
16  public void setProblemId(Long problemId) {
17    this.problemId = problemId;
18  }
19  public Long getAlgorithmId() {
20    return algorithmId;
21  }
22  public ECJConnectorState(Long platformId, Long problemId, Long algorithmId) {
23    super();
24    this.platformId = platformId;
25    this.problemId = problemId;
26    this.algorithmId = algorithmId;
27  }
28  public void setAlgorithmId(Long algorithmId) {
29    this.algorithmId = algorithmId;
30  }
31}
Note: See TracBrowser for help on using the repository browser.