1 /***
2 * Copyright (C) 2005 Big Lots Inc.
3 */
4
5 package org.jumpmind.symmetric.security.inet;
6
7 /***
8 * Provides lower-level address authorization to allow for raw address bytes to be authorized as opposed to requiring an
9 * <code>InetAddress</code> to be created for authorization checks.
10 *
11 * @author dmichels
12 */
13 public interface IRawInetAddressAuthorizer
14 {
15 public boolean isAuthorized(byte[] addrBytes);
16 }