Package org.syrup.helpers

Examples of org.syrup.helpers.LogEntryImpl


     *            The ResultSet that holds the LogEntry attributes.
     * @return The LogEntry held by a ResultSet.
     */
    protected LogEntry readLogEntry(ResultSet result) throws Exception
    {
        LogEntry logentry = new LogEntryImpl(result.getLong("creation_time"), result.getString("key_"), (int) result.getInt("event"), result.getString("worker"));

        return logentry;
    }
View Full Code Here

TOP

Related Classes of org.syrup.helpers.LogEntryImpl

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.