/** * Copyright (C) 2012 KRM Associates, Inc. healtheme@krminc.com * * 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. */ /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.krminc.phr.api.converter; import com.krminc.phr.domain.Visit; import java.net.URI; import java.util.Collection; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlTransient; import javax.xml.bind.annotation.XmlAttribute; import java.util.ArrayList; /** * * @author cmccall */ @XmlRootElement(name = "visits") public class VisitsConverter { private Collection<Visit> entities; private Collection<VisitConverter> items; private URI uri; private int expandLevel; /** Creates a new instance of VisitsConverter */ public VisitsConverter() { } /** * Creates a new instance of VisitsConverter. * * @param entities associated entities * @param uri associated uri * @param expandLevel indicates the number of levels the entity graph should be expanded */ public VisitsConverter(Collection<Visit> entities, URI uri, int expandLevel) { this.entities = entities; this.uri = uri; this.expandLevel = expandLevel; getVisit(); } /** * Returns a collection of VisitConverter. * * @return a collection of VisitConverter */ @XmlElement public Collection<VisitConverter> getVisit() { if (items == null) { items = new ArrayList<VisitConverter>(); } if (entities != null) { items.clear(); for (Visit entity : entities) { items.add(new VisitConverter(entity, uri, expandLevel, true)); } } return items; } /** * Sets a collection of VisitConverter. * * @param a collection of VisitConverter to set */ public void setVisit(Collection<VisitConverter> items) { this.items = items; } /** * Returns the URI associated with this converter. * * @return the uri */ @XmlAttribute public URI getUri() { return uri; } /** * Returns a collection Visit entities. * * @return a collection of Visit entities */ @XmlTransient public Collection<Visit> getEntities() { entities = new ArrayList<Visit>(); if (items != null) { for (VisitConverter item : items) { entities.add(item.getEntity()); } } return entities; } }