edu.internet2.middleware.grouper.ws.rest.stem.WsRestFindStemsRequestWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper-ws Show documentation
Show all versions of grouper-ws Show documentation
Internet2 Groups Management WS Core
package edu.internet2.middleware.grouper.ws.rest.stem;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@ApiModel(description = "Request body to find stems")
public class WsRestFindStemsRequestWrapper {
private WsRestFindStemsRequest wsRestFindStemsRequest;
@ApiModelProperty(name = "WsRestFindStemsRequest", value = "Identifies the request as a find stems request")
public WsRestFindStemsRequest getWsRestFindStemsRequest() {
return wsRestFindStemsRequest;
}
public void setWsRestFindStemsRequest(
WsRestFindStemsRequest wsRestFindStemsRequest) {
this.wsRestFindStemsRequest = wsRestFindStemsRequest;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy