/* * codjo.net * * Common Apache License 2.0 */ package net.codjo.dataprocess.server.handlercommand; import net.codjo.dataprocess.server.handlerhelper.FamilyHandlerHelper; import net.codjo.mad.server.handler.HandlerCommand; import net.codjo.mad.server.handler.HandlerException; import java.sql.Connection; import java.sql.SQLException; /** * */ public class CmdNewFamilyCommand extends HandlerCommand { @Override public CommandResult executeQuery(CommandQuery query) throws HandlerException, SQLException { Connection con = getContext().getTxConnection(); try { int repositoryId = query.getArgumentInteger("repositoryId"); String familyName = query.getArgumentString("familyName"); String result = FamilyHandlerHelper.newFamily(con, repositoryId, familyName); return createResult(result); } finally { con.close(); } } }