com.xcase.box.impl.simple.transputs.UpdateCollaborationRequestImpl Maven / Gradle / Ivy
/**
* Copyright 2016 Xcase All rights reserved.
*/
package com.xcase.box.impl.simple.transputs;
import com.xcase.box.constant.BoxConstant;
import com.xcase.box.transputs.UpdateCollaborationRequest;
/**
*
* @author martin
*/
public class UpdateCollaborationRequestImpl extends BoxRequestImpl implements UpdateCollaborationRequest {
private String id;
private String role;
private String status;
/**
* @return the id
*/
public String getId() {
return this.id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the role
*/
public String getRole() {
return this.role;
}
/**
* @param role the role to set
*/
public void setRole(String role) {
this.role = role;
}
/**
* @return the status
*/
public String getStatus() {
return this.status;
}
/**
* @param status the status to set
*/
public void setStatus(String status) {
this.status = status;
}
/**
* @return action name
*/
public String getActionName() {
return BoxConstant.ACTION_NAME_ADD_TO_MYBOX;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy