package org.openslx.imagemaster.db; import org.apache.log4j.Logger; public class DbPendingSatellite { private static final Logger LOG = Logger.getLogger( DbPendingSatellite.class ); public static boolean add( String organizationId, String address, String modulus, String exponent ) { String publickey = "mod:" + modulus + " exp:" + exponent; return MySQL.update( "INSERT INTO pending_satellite (dateline, organizationid, address, publickey)" + " VALUES (UNIX_TIMESTAMP(), ?, ?, ?)", organizationId, address, publickey ) != 0; } }