1 9 package org.jboss.portal.core.output; 10 11 import org.jboss.portal.server.ServerURL; 12 import org.jboss.portal.server.WindowContext; 13 import org.jboss.portal.server.output.RedirectionResult; 14 15 19 public class AuthenticateResult extends RedirectionResult 20 { 21 22 23 private ServerURL target; 24 25 public AuthenticateResult(WindowContext producer, ServerURL target) 26 { 27 super(producer); 28 this.target = target; 29 } 30 31 public ServerURL getTarget() 32 { 33 return target; 34 } 35 } 36 | Popular Tags |