/* * Copyright (C) 2009 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.services.jcr.ext.metadata; import org.apache.commons.chain.Context; import org.exoplatform.services.command.action.Action; import org.exoplatform.services.jcr.impl.core.NodeImpl; import org.exoplatform.services.jcr.impl.core.value.ValueFactoryImpl; import javax.jcr.Value; /** * for node operations like addNode, checkin * * @author <a href="mailto:Sergey.Kabashnyuk@gmail.com">Sergey Kabashnyuk</a> * @version $Id: $ */ public class SetDCMetadataAction implements Action { public boolean execute(Context ctx) throws Exception { NodeImpl node = (NodeImpl)ctx.get("currentItem"); if (node.canAddMixin("dc:elementSet")) node.addMixin("dc:elementSet"); node.setProperty("dc:creator", new String[]{node.getSession().getUserID()}); ValueFactoryImpl vf = node.getSession().getValueFactory(); node.setProperty("dc:date", new Value[]{vf.createValue(node.getSession().getTransientNodesManager() .getTransactManager().getStorageDataManager().getCurrentTime())}); return false; } }