Package framework.beans.config.server

Examples of framework.beans.config.server.ConfigBeanRemoteM


    @Override
  public Map<String, Object> getDefaultParameters() throws ClipsServerException{
    try{
      HashMap<String, Object>  target = new HashMap<String, Object>();
      ConfigBeanRemoteM    config = getBean(ConfigBeanRemoteM.class);

            getExtraDefaultParameters(target, config);
            return target;
        } catch (RuntimeException ex) {
            throw new ClipsServerException("Ошибка получения параметров отчета", ex);
View Full Code Here


     * @param d
     * @return
     */
    private Pair<Polis, AuditDetails> getPolis(PolisDetails d) throws ClipsServerException {
        if (d.id == 0) {
            ConfigBeanRemoteM conf = getBean(ConfigBeanM.class);
            int regionCode = conf.getInteger(ConfigParametr.REGION_CODE_ID);

            //TODO0 какой иншурер выбрать?
            Collaborator collab = findEntity(Collaborator.class, getCollaborator().getId());
            int insurerID = collab.getLpu().getInsurer().getId();

View Full Code Here

    }

    @Override
    public List<RecipeData> getRecipeDataList(Date begin, Date end) throws ClipsServerException {
        ConfigBeanRemoteM conf = getBean(ConfigBeanM.class);

        Collaborator collaborator = findEntity(Collaborator.class, getCollaborator().getId());
        Lpu lpu = collaborator.getLpu();
        String lpuTFOMScode = lpu.getLpuCode() != null ? lpu.getLpuCode() : "";
View Full Code Here

TOP

Related Classes of framework.beans.config.server.ConfigBeanRemoteM

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.