Package aim.domain.policy

Examples of aim.domain.policy.LightSeriesSet


            LightPolicySet tempLightPolicySet = new LightPolicySet();
            List<LightSeriesSet> tempSeriesSet = new ArrayList<LightSeriesSet>();
            Collection<PolicySeries> typeSeries = policyType.getTypeSeries();
            if (typeSeries != null) {
                for (PolicySeries series : typeSeries) {
                    final LightSeriesSet tempSerie = new LightSeriesSet();
                    tempSerie.setSerieName(series.getSeries());
                    tempSerie.setPolicyCount(policyTypeService.seriesPolicyCount(series.getSeries()));
                    tempSeriesSet.add(tempSerie);
                }
            }
            tempLightPolicySet.setType(policyType.getTitle());
            tempLightPolicySet.setSeries(tempSeriesSet);
View Full Code Here


            sucessfullSerie = true;
            PolicySeries newSeries = new PolicySeries(newSerie);
            newSeries.setPolicyType(types.get(table.getRowIndex()));
            types.get(table.getRowIndex()).getTypeSeries().add(newSeries);
            policyTypeService.mergePolicyType(types.get(table.getRowIndex()));
            final LightSeriesSet tempSerie = new LightSeriesSet();
            tempSerie.setSerieName(newSerie);
            tempSerie.setPolicyCount(0);
            policiesTypes.get(table.getRowIndex()).getSeries().add(tempSerie);
        }
        newSerie = "";
        return null;
    }
View Full Code Here

TOP

Related Classes of aim.domain.policy.LightSeriesSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.