/* * Copyright (C) 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package interactivespaces.domain.support; import interactivespaces.domain.basic.LiveActivityGroup; import interactivespaces.domain.basic.pojo.SimpleLiveActivityGroup; /** * A collection of useful utilities for working with a {@link LiveActivityGroup}. * * @author Keith M. Hughes */ public class LiveActivityGroupUtils { /** * Private constructor for utility class. */ private LiveActivityGroupUtils() { } /** * Copy the source to a POJO template. * * <p> * The copy includes all fields. * * @param source * the source live activity group object * * @return a newly created copy of the source data */ public static LiveActivityGroup toTemplate(LiveActivityGroup source) { SimpleLiveActivityGroup template = new SimpleLiveActivityGroup(); copy(source, template); return template; } /** * Copy the fields from the source to the destination. * * <p> * Everything is copied except the ID. * * @param source * the source live activity group object * @param destination * the destination live activity group object */ public static void copy(LiveActivityGroup source, LiveActivityGroup destination) { destination.setName(source.getName()); destination.setDescription(source.getDescription()); } }