All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hack23.cia.service.impl.ViewRiksdagenCommitteeDataContainer Maven / Gradle / Ivy

/*
 * Copyright 2010 James Pether Sörling
 *
 * Licensed 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.
 *
 *	$Id$
 *  $HeadURL$
*/
package com.hack23.cia.service.impl;

import java.util.ArrayList;
import java.util.List;

import javax.persistence.metamodel.SingularAttribute;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.annotation.Secured;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

import com.hack23.cia.model.internal.application.data.committee.impl.ViewRiksdagenCommittee;
import com.hack23.cia.service.api.DataContainer;
import com.hack23.cia.service.data.api.ViewRiksdagenCommitteeDAO;

/**
 * The Class ViewRiksdagenCommitteeDataContainer.
 */
@Component("ViewRiksdagenCommitteeDataContainer")
@Transactional(propagation=Propagation.REQUIRED)
@Secured({"ROLE_ANONYMOUS","ROLE_USER", "ROLE_ADMIN" })
public final class ViewRiksdagenCommitteeDataContainer implements DataContainer{

	/** The view riksdagen committee dao. */
	@Autowired
	private ViewRiksdagenCommitteeDAO viewRiksdagenCommitteeDAO;

	/**
	 * Instantiates a new view riksdagen committee data container.
	 */
	public ViewRiksdagenCommitteeDataContainer() {
		super();
	}

	@Override
	public List getAll() {
		return viewRiksdagenCommitteeDAO.getAll();
	}

	@Override
	public ViewRiksdagenCommittee load(final String id) {
		for (final ViewRiksdagenCommittee riksdagenCommittee : viewRiksdagenCommitteeDAO.getAll()) {
			if (id.equals(riksdagenCommittee.getEmbeddedId().getOrgCode())) {
				return riksdagenCommittee;
			}

		}

		return null;
	}

	@Override
	public List getAllBy(
			final SingularAttribute property,
			final Object value) {
		return viewRiksdagenCommitteeDAO.findListByProperty(property, value);
	}

	@Override
	public List findListByProperty(
			final Object[] values,
			final SingularAttribute... properties) {
		return viewRiksdagenCommitteeDAO.findListByProperty(values, properties);
	}

	@Override
	public  T findByQueryProperty(final Class clazz,
			final SingularAttribute property, final Class clazz2,
			final SingularAttribute property2, final Object value) {
		return null;
	}

	@Override
	public  List findListByEmbeddedProperty(final Class clazz,
			final SingularAttribute property, final Class clazz2,
			final SingularAttribute property2, final Object value) {
		return new ArrayList<>();
	}

	@Override
	public List getAllOrderBy(
			final SingularAttribute property) {
		return viewRiksdagenCommitteeDAO.getAllOrderBy(property);
	}

	@Override
	public List findOrderedListByProperty(
			final SingularAttribute orderByProperty, final Object[] values,
			final SingularAttribute... properties) {
		return null;
	}

	@Override
	public  List findOrderedListByEmbeddedProperty(final Class clazz, final SingularAttribute property,
			final Class clazz2, final SingularAttribute property2, final Object value,
			final SingularAttribute orderByProperty) {
		return new ArrayList<>();
	}

	@Override
	public  List findOrderedByPropertyListByEmbeddedProperty(final Class clazz, final SingularAttribute property,
			final Class clazz2, final SingularAttribute property2, final Object value,
			final SingularAttribute orderByProperty) {
		return new ArrayList<>();
	}

	@Override
	public List findOrderedListByProperty(
			final SingularAttribute property, final Object value,
			final SingularAttribute orderByProperty) {
		return new ArrayList<>();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy