org.gpel.client.GcSearchRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gpel-client Show documentation
Show all versions of gpel-client Show documentation
Grid BPEL Engine Client developed by Extreme Computing Lab, Indiana University
The newest version!
/* -*- mode: Java; c-basic-offset: 4; indent-tabs-mode: nil; -*- //------100-columns-wide------>|*/
/* Copyright (c) 2005 Extreme! Lab, Indiana University. All rights reserved.
* This software is open source. See the bottom of this file for the license.
* $Id: GcSearchRequest.java,v 1.2 2006/12/07 04:55:28 aslom Exp $
*/
package org.gpel.client;
import java.util.ArrayList;
import java.util.List;
public class GcSearchRequest {
private int size;
//private int offset;
private String searchFullText;
private SearchType searchType;
private List labelSets = new ArrayList();
public enum SearchType { GPEL_TEMPLATE, GPEL_INSTANCE }
public GcSearchRequest(int size) {
this.size = size;
}
// public void setSize(int num) {
// this.size = num;
// }
public int size() {
return size;
}
public void setSearchFullText(String searchFullText) {
this.searchFullText = searchFullText;
}
public String getSearchFullText() {
return searchFullText;
}
public void setSearchType(SearchType searchType) {
this.searchType = searchType;
}
public SearchType getSearchType() {
return searchType;
}
public void setLabelSets(List labelSets) {
this.labelSets = labelSets;
}
public List getLabelSets() {
return labelSets;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy