edu.internet2.middleware.grouper.app.provisioning.targetDao.TargetDaoRetrieveAllEntitiesRequest 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;
public class TargetDaoRetrieveAllEntitiesRequest {
public TargetDaoRetrieveAllEntitiesRequest() {
}
private boolean includeNativeEntity;
public boolean isIncludeNativeEntity() {
return includeNativeEntity;
}
public void setIncludeNativeEntity(boolean includeNativeEntity) {
this.includeNativeEntity = includeNativeEntity;
}
/**
* if memberships are part of entity (e.g. in attribute), then if true, get all memberships too, otherwise just get entity part
*/
private boolean includeAllMembershipsIfApplicable;
/**
* if memberships are part of entity (e.g. in attribute), then if true, get all memberships too, otherwise just get entity part
* @return
*/
public boolean isIncludeAllMembershipsIfApplicable() {
return includeAllMembershipsIfApplicable;
}
/**
* if memberships are part of entity (e.g. in attribute), then if true, get all memberships too, otherwise just get entity part
* @param includeAllMembershipsIfApplicable
*/
public void setIncludeAllMembershipsIfApplicable(
boolean includeAllMembershipsIfApplicable) {
this.includeAllMembershipsIfApplicable = includeAllMembershipsIfApplicable;
}
public TargetDaoRetrieveAllEntitiesRequest(boolean includeAllMembershipsIfApplicable) {
this.includeAllMembershipsIfApplicable = includeAllMembershipsIfApplicable;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy