1 /* 2 * Copyright 2000 - 2010 Ivan Khalopik. All Rights Reserved. 3 */ 4 5 package org.greatage.security; 6 7 import java.io.Serializable; 8 import java.util.List; 9 10 /** 11 * @author Ivan Khalopik 12 * @since 1.0 13 */ 14 public interface Authentication extends Serializable { 15 16 String getName(); 17 18 List<String> getAuthorities(); 19 20 }