Package com.warrantchange.model

Examples of com.warrantchange.model.WarrantClp


    return newList;
  }

  public static Object translateInputWarrant(BaseModel<?> oldModel) {
    WarrantClp oldCplModel = (WarrantClp)oldModel;

    Thread currentThread = Thread.currentThread();

    ClassLoader contextClassLoader = currentThread.getContextClassLoader();

    try {
      currentThread.setContextClassLoader(_classLoader);

      try {
        Class<?> newModelClass = Class.forName("com.warrantchange.model.impl.WarrantImpl",
            true, _classLoader);

        Object newModel = newModelClass.newInstance();

        Method method0 = newModelClass.getMethod("setId",
            new Class[] { Long.TYPE });

        Long value0 = new Long(oldCplModel.getId());

        method0.invoke(newModel, value0);

        Method method1 = newModelClass.getMethod("setUserId",
            new Class[] { Long.TYPE });

        Long value1 = new Long(oldCplModel.getUserId());

        method1.invoke(newModel, value1);

        Method method2 = newModelClass.getMethod("setSummary",
            new Class[] { String.class });

        String value2 = oldCplModel.getSummary();

        method2.invoke(newModel, value2);

        Method method3 = newModelClass.getMethod("setQuantity",
            new Class[] { Integer.TYPE });

        Integer value3 = new Integer(oldCplModel.getQuantity());

        method3.invoke(newModel, value3);

        Method method4 = newModelClass.getMethod("setPrice",
            new Class[] { Double.TYPE });

        Double value4 = new Double(oldCplModel.getPrice());

        method4.invoke(newModel, value4);

        Method method5 = newModelClass.getMethod("setStatus",
            new Class[] { String.class });

        String value5 = oldCplModel.getStatus();

        method5.invoke(newModel, value5);

        Method method6 = newModelClass.getMethod("setCreateDate",
            new Class[] { Date.class });

        Date value6 = oldCplModel.getCreateDate();

        method6.invoke(newModel, value6);

        Method method7 = newModelClass.getMethod("setModifiedDate",
            new Class[] { Date.class });

        Date value7 = oldCplModel.getModifiedDate();

        method7.invoke(newModel, value7);

        Method method8 = newModelClass.getMethod("setExpirationWarningSent",
            new Class[] { Boolean.TYPE });

        Boolean value8 = new Boolean(oldCplModel.getExpirationWarningSent());

        method8.invoke(newModel, value8);

        return newModel;
      }
View Full Code Here


    try {
      currentThread.setContextClassLoader(_classLoader);

      try {
        WarrantClp newModel = new WarrantClp();

        Class<?> oldModelClass = oldModel.getClass();

        Method method0 = oldModelClass.getMethod("getId");

        Long value0 = (Long)method0.invoke(oldModel, (Object[])null);

        newModel.setId(value0);

        Method method1 = oldModelClass.getMethod("getUserId");

        Long value1 = (Long)method1.invoke(oldModel, (Object[])null);

        newModel.setUserId(value1);

        Method method2 = oldModelClass.getMethod("getSummary");

        String value2 = (String)method2.invoke(oldModel, (Object[])null);

        newModel.setSummary(value2);

        Method method3 = oldModelClass.getMethod("getQuantity");

        Integer value3 = (Integer)method3.invoke(oldModel,
            (Object[])null);

        newModel.setQuantity(value3);

        Method method4 = oldModelClass.getMethod("getPrice");

        Double value4 = (Double)method4.invoke(oldModel, (Object[])null);

        newModel.setPrice(value4);

        Method method5 = oldModelClass.getMethod("getStatus");

        String value5 = (String)method5.invoke(oldModel, (Object[])null);

        newModel.setStatus(value5);

        Method method6 = oldModelClass.getMethod("getCreateDate");

        Date value6 = (Date)method6.invoke(oldModel, (Object[])null);

        newModel.setCreateDate(value6);

        Method method7 = oldModelClass.getMethod("getModifiedDate");

        Date value7 = (Date)method7.invoke(oldModel, (Object[])null);

        newModel.setModifiedDate(value7);

        Method method8 = oldModelClass.getMethod(
            "getExpirationWarningSent");

        Boolean value8 = (Boolean)method8.invoke(oldModel,
            (Object[])null);

        newModel.setExpirationWarningSent(value8);

        return newModel;
      }
      catch (Exception e) {
        _log.error(e, e);
View Full Code Here

TOP

Related Classes of com.warrantchange.model.WarrantClp

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.