edu.internet2.middleware.grouper.ws.rest.stem.WsRestStemDeleteLiteRequest 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
/*******************************************************************************
* Copyright 2012 Internet2
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
/*
* @author mchyzer
* $Id: WsRestStemDeleteLiteRequest.java,v 1.1 2008-03-30 09:01:03 mchyzer Exp $
*/
package edu.internet2.middleware.grouper.ws.rest.stem;
import edu.internet2.middleware.grouper.ws.GrouperServiceLogic;
import edu.internet2.middleware.grouper.ws.rest.WsRequestBean;
import edu.internet2.middleware.grouper.ws.rest.method.GrouperRestHttpMethod;
/**
* lite bean that will be the data from rest request
* @see GrouperServiceLogic#getGroupsLite(edu.internet2.middleware.grouper.ws.GrouperWsVersion, String, String, String, edu.internet2.middleware.grouper.ws.member.WsMemberFilter, String, String, String, boolean, boolean, String, String, String, String, String)
* for lite method
*/
public class WsRestStemDeleteLiteRequest implements WsRequestBean {
/** field */
private String stemName;
/** field */
private String stemUuid;
/**
* field
*/
private String clientVersion;
/** field */
private String actAsSubjectId;
/** field */
private String actAsSubjectSourceId;
/** field */
private String actAsSubjectIdentifier;
/** field */
private String paramName0;
/** field */
private String paramValue0;
/** field */
private String paramName1;
/** field */
private String paramValue1;
/**
* field
* @return field
*/
public String getClientVersion() {
return this.clientVersion;
}
/**
* field
* @param clientVersion1
*/
public void setClientVersion(String clientVersion1) {
this.clientVersion = clientVersion1;
}
/**
* field
* @return field
*/
public String getActAsSubjectId() {
return this.actAsSubjectId;
}
/**
* field
* @param actAsSubjectId1
*/
public void setActAsSubjectId(String actAsSubjectId1) {
this.actAsSubjectId = actAsSubjectId1;
}
/**
* field
* @return field
*/
public String getActAsSubjectSourceId() {
return this.actAsSubjectSourceId;
}
/**
* field
* @param actAsSubjectSource1
*/
public void setActAsSubjectSourceId(String actAsSubjectSource1) {
this.actAsSubjectSourceId = actAsSubjectSource1;
}
/**
* field
* @return field
*/
public String getActAsSubjectIdentifier() {
return this.actAsSubjectIdentifier;
}
/**
* field
* @param actAsSubjectIdentifier1
*/
public void setActAsSubjectIdentifier(String actAsSubjectIdentifier1) {
this.actAsSubjectIdentifier = actAsSubjectIdentifier1;
}
/**
* field
* @return field
*/
public String getParamName0() {
return this.paramName0;
}
/**
* field
* @param _paramName0
*/
public void setParamName0(String _paramName0) {
this.paramName0 = _paramName0;
}
/**
* field
* @return field
*/
public String getParamValue0() {
return this.paramValue0;
}
/**
* field
* @param _paramValue0
*/
public void setParamValue0(String _paramValue0) {
this.paramValue0 = _paramValue0;
}
/**
* field
* @return field
*/
public String getParamName1() {
return this.paramName1;
}
/**
* field
* @param _paramName1
*/
public void setParamName1(String _paramName1) {
this.paramName1 = _paramName1;
}
/**
* field
* @return field
*/
public String getParamValue1() {
return this.paramValue1;
}
/**
* field
* @param _paramValue1
*/
public void setParamValue1(String _paramValue1) {
this.paramValue1 = _paramValue1;
}
/**
*
* @see edu.internet2.middleware.grouper.ws.rest.WsRequestBean#retrieveRestHttpMethod()
*/
public GrouperRestHttpMethod retrieveRestHttpMethod() {
return GrouperRestHttpMethod.DELETE;
}
/**
* field
* @return the stemName
*/
public String getStemName() {
return this.stemName;
}
/**
* field
* @param stemName1 the stemName to set
*/
public void setStemName(String stemName1) {
this.stemName = stemName1;
}
/**
* field
* @return the groupUuid
*/
public String getStemUuid() {
return this.stemUuid;
}
/**
* field
* @param groupUuid1 the groupUuid to set
*/
public void setStemUuid(String groupUuid1) {
this.stemUuid = groupUuid1;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy