示例#1
0
  public Object store(String id, State voobj) {
    State obj;

    if (id.equals("0")) {
      obj = new State();

    } else {
      obj = State.DAO().findById(id);
    }

    boolean isNewStateN65961 = obj.getId() == null || obj.getId().equals(0L);

    obj.setName(voobj.getName());
    obj.setCountry(Country.DAO().findBy(voobj.getCountry()));

    return obj.store();
  }
示例#2
0
  /** /xml/State/(0-9+) */
  public State find(String id) {

    State obj = null;

    // step 1: build map
    Session session = Session.getMySession();
    Map<String, Object> map = new HashMap<String, Object>();

    if (id.equals("0")) {
      // step 2: new object
      obj = new State();

      // step 3: setvalues

    } else {
      obj = State.DAO().findById(id);
    }

    // step 5: foreach

    // step 6: return
    return obj;
  }
示例#3
0
public abstract class StateServicesAbstract extends com.jrapid.services.Services {

  protected EL el = new EL(new FunctionMapper());
  protected Logger logger = Logger.getLogger(StateServices.class);

  protected StateDAO dao = (StateDAO) State.DAO();

  public Boolean remove(String id) {
    dao.findById(id).remove();
    return true;
  }

  public Boolean removeMany(Collection<String> ids) {
    for (String id : ids) {
      this.remove(id);
    }
    return true;
  }

  /** /xml/State/(0-9+) */
  public State find(String id) {

    State obj = null;

    // step 1: build map
    Session session = Session.getMySession();
    Map<String, Object> map = new HashMap<String, Object>();

    if (id.equals("0")) {
      // step 2: new object
      obj = new State();

      // step 3: setvalues

    } else {
      obj = State.DAO().findById(id);
    }

    // step 5: foreach

    // step 6: return
    return obj;
  }

  /** */
  public Object store(String id, State voobj) {
    State obj;

    if (id.equals("0")) {
      obj = new State();

    } else {
      obj = State.DAO().findById(id);
    }

    boolean isNewStateN65961 = obj.getId() == null || obj.getId().equals(0L);

    obj.setName(voobj.getName());
    obj.setCountry(Country.DAO().findBy(voobj.getCountry()));

    return obj.store();
  }

  /** /xml/State */
  public Collection<State> findPage(Map<String, String> params) {
    Map<String, Object> map = buildParamsMap(params);
    Filter filters = dao.buildFiltersFromMap(map);

    int pageNumber =
        params.get("_page") == null ? 1 : Integer.parseInt(params.get("_page").toString());
    int first = (pageNumber - 1) * 50;
    int max = params.get("_page") == null ? Integer.MAX_VALUE : 50;
    String hints = null;

    String order = (String) params.get("_order");
    if (order != null) {
      int index =
          (order.indexOf("d") > 0)
              ? Integer.valueOf(order.substring(0, order.indexOf("d")))
              : Integer.valueOf(order);
      String[] columns = new String[] {"name", ""};
      order = columns[index] + (order.indexOf("d") > 0 ? " desc" : "");
    }

    if (order == null) {
      order = "name";
    }

    int count = dao.count(filters);
    List<State> list = dao.findMany(filters, order, first, max, hints);
    return new Page<State>(list, pageNumber, (count - 1) / max + 1, count);
  }

  /** /xml/State/forCountry */
  public Collection<State> findSubsetForCountry(String countryParamId, Map<String, String> params) {
    Map<String, Object> map = buildParamsMap(params);
    Filter filters = dao.buildFiltersFromMap(map);

    Country countryParam = Country.DAO().findById(countryParamId);

    int pageNumber =
        params.get("_page") == null ? 1 : Integer.parseInt(params.get("_page").toString());
    int first = (pageNumber - 1) * 50;
    int max = params.get("_page") == null ? Integer.MAX_VALUE : 50;
    String hints = null;

    String order = (String) params.get("_order");
    if (order != null) {
      int index =
          (order.indexOf("d") > 0)
              ? Integer.valueOf(order.substring(0, order.indexOf("d")))
              : Integer.valueOf(order);
      String[] columns = new String[] {"name", ""};
      order = columns[index] + (order.indexOf("d") > 0 ? " desc" : "");
    }

    if (order == null) {
      order = "name";
    }

    int count = dao.count(filters.and(dao.getForCountrySubsetFilter(countryParam)));
    List<State> list = dao.findForCountry(countryParam, filters, order, first, max, hints);
    return new Page<State>(list, pageNumber, (count - 1) / max + 1, count);
  }

  protected Object parse(String filter, String value) {

    return null;
  }

  // code for dynamic values

  // code for dynamic foreach

  // code for suggest

  // code for conditionals

  // code for unique

  // code for defaultsets

}