
com.xcase.intapp.cdsusers.impl.simple.transputs.DeleteRoleRequestImpl Maven / Gradle / Ivy
package com.xcase.intapp.cdsusers.impl.simple.transputs;
import com.xcase.intapp.cdsusers.transputs.DeleteRoleRequest;
public class DeleteRoleRequestImpl extends CDSUsersRequestImpl implements DeleteRoleRequest {
private String key;
private String operationPath = "api/v1/cds/roles/{key}";
@Override
public void setKey(String key) {
this.key = key;
}
@Override
public String getOperationPath() {
return operationPath;
}
@Override
public String getKey() {
return key;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy