blob: b57065fc46e3ae41d18397d5e1d84b7a0d024907 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package org.openslx.imagemaster.db;
public class DbKey
{
public final byte[] bytes;
public DbKey(byte[] bytes) {
this.bytes = bytes;
}
public static DbKey fromOrganization(String organization) {
return MySQL.findUniqueOrNull( DbKey.class, "SELECT publickey FROM satellite WHERE organization = ?", organization );
}
}
|