Java tutorial
/* * The DecidR Development Team licenses this file to you 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. */ package de.decidr.model.commands.tenant; import java.util.List; import org.hibernate.Criteria; import org.hibernate.criterion.CriteriaSpecification; import org.hibernate.criterion.Restrictions; import de.decidr.model.acl.roles.Role; import de.decidr.model.entities.Tenant; import de.decidr.model.entities.WorkflowInstance; import de.decidr.model.exceptions.EntityNotFoundException; import de.decidr.model.exceptions.TransactionException; import de.decidr.model.filters.PaginatingCriteria; import de.decidr.model.filters.Paginator; import de.decidr.model.transactions.TransactionStartedEvent; /** * Saves all {@link WorkflowInstance}s for the given tenant in the result * variable. * * @author Markus Fischer * @author Daniel Huss * * @version 0.1 */ public class GetWorkflowInstancesCommand extends TenantCommand { private Paginator paginator; private List<WorkflowInstance> result; /** * Creates a new GetWorkflowInstanceCommand. The command will save all * WorkflowInstances for the given tenant in the result variable. * * @param role * the user which executes the command * @param tenantId * the ID of the tenant for which the workflow instances should * be requested * @param paginator * {@link Paginator} * @throws IllegalArgumentException * if the given tenant ID is <code>null</code>. */ public GetWorkflowInstancesCommand(Role role, Long tenantId, Paginator paginator) { super(role, tenantId); requireTenantId(); this.paginator = paginator; } /** * @return List of WorkflowInstances which are part of the given tenant */ public List<WorkflowInstance> getResult() { return result; } @SuppressWarnings("unchecked") @Override public void transactionAllowed(TransactionStartedEvent evt) throws TransactionException { String hql = "select t.id from Tenant t where t.id = :tenantId"; Boolean tenantExists = evt.getSession().createQuery(hql).setLong("tenantId", getTenantId()) .uniqueResult() != null; if (!tenantExists) { throw new EntityNotFoundException(Tenant.class, getTenantId()); } PaginatingCriteria c = new PaginatingCriteria(WorkflowInstance.class, evt.getSession()); Criteria c2; // create criteria 2nd level and project to name c2 = c.createCriteria("deployedWorkflowModel", CriteriaSpecification.INNER_JOIN); // create criteria 3rd level and project to name c2.createCriteria("tenant", CriteriaSpecification.INNER_JOIN).add(Restrictions.idEq(getTenantId())); if (paginator != null) { paginator.apply(c); } c.setResultTransformer(CriteriaSpecification.ROOT_ENTITY); result = c.list(); } }