6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper/**
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper *
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper *
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * The contents of this file are subject to the terms
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * of the Common Development and Distribution License
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * (the License). You may not use this file except in
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * compliance with the License.
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper *
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * You can obtain a copy of the License at
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * https://opensso.dev.java.net/public/CDDLv1.0.html or
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * opensso/legal/CDDLv1.0.txt
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * See the License for the specific language governing
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * permission and limitations under the License.
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper *
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * When distributing Covered Code, include this CDDL
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * Header Notice in each file and include the License file
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * at opensso/legal/CDDLv1.0.txt.
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * If applicable, add the following below the CDDL Header,
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * with the fields enclosed by brackets [] replaced by
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * your own identifying information:
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * "Portions Copyrighted [year] [name of copyright owner]"
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper *
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper * $Id: SecurityAwareEJB.java,v 1.2 2008/06/25 05:52:09 qcheng Exp $
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper *
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper */
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeperpackage com.sun.identity.agents.sample;
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeperimport javax.ejb.EJBObject;
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeperimport java.rmi.RemoteException;
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeperpublic interface SecurityAwareEJB extends EJBObject {
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper public String getDetails() throws RemoteException;
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper}
6406210b71fd4a97800f32f3613eea9b6a6a12ceMark de Reeper