edu.internet2.middleware.grouper.app.provisioning.targetDao.TargetDaoUpdateEntityRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper Show documentation
Show all versions of grouper Show documentation
Internet2 Groups Management Toolkit
package edu.internet2.middleware.grouper.app.provisioning.targetDao;
import edu.internet2.middleware.grouper.app.provisioning.ProvisioningEntity;
public class TargetDaoUpdateEntityRequest {
public TargetDaoUpdateEntityRequest() {
// TODO Auto-generated constructor stub
}
private ProvisioningEntity targetEntity;
public ProvisioningEntity getTargetEntity() {
return targetEntity;
}
public void setTargetEntity(ProvisioningEntity targetEntity) {
this.targetEntity = targetEntity;
}
public TargetDaoUpdateEntityRequest(ProvisioningEntity targetEntity) {
super();
this.targetEntity = targetEntity;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy