/* ================================================================== * Created [2009-4-27 下午11:32:55] by Jon.King * ================================================================== * TSS * ================================================================== * mailTo:jinpujun@hotmail.com * Copyright (c) Jon.King, 2009-2012 * ================================================================== */ package com.jinhe.tss.core.sso.identifier; import com.jinhe.tss.core.exception.UserIdentificationException; import com.jinhe.tss.core.sso.AnonymousOperator; import com.jinhe.tss.core.sso.IOperator; /** * <p> DemoUserIdentifier.java </p> * <p> * 虚拟身份认证器:以匿名身份登录 * </p> */ public class DemoUserIdentifier extends BaseUserIdentifier { protected IOperator validate() throws UserIdentificationException { return AnonymousOperator.anonymous; } }