Package br.com.thiagomoreira.liferay.plugins.notfound.services.model

Examples of br.com.thiagomoreira.liferay.plugins.notfound.services.model.NotFoundClp


        return newList;
    }

    public static Object translateInputNotFound(BaseModel<?> oldModel) {
        NotFoundClp oldClpModel = (NotFoundClp) oldModel;

        BaseModel<?> newModel = oldClpModel.getNotFoundRemoteModel();

        newModel.setModelAttributes(oldClpModel.getModelAttributes());

        return newModel;
    }
View Full Code Here


        return throwable;
    }

    public static Object translateOutputNotFound(BaseModel<?> oldModel) {
        NotFoundClp newModel = new NotFoundClp();

        newModel.setModelAttributes(oldModel.getModelAttributes());

        newModel.setNotFoundRemoteModel(oldModel);

        return newModel;
    }
View Full Code Here

TOP

Related Classes of br.com.thiagomoreira.liferay.plugins.notfound.services.model.NotFoundClp

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.