diff options
author | Daniel Boelzle <dbo@openoffice.org> | 2000-12-12 15:43:44 +0000 |
---|---|---|
committer | Daniel Boelzle <dbo@openoffice.org> | 2000-12-12 15:43:44 +0000 |
commit | dadba07e6cbbd5cbdcdd24d721cc6c776dbd7755 (patch) | |
tree | b9fdc3bf185171869d08b08f1be2a003417cb361 /udkapi | |
parent | 62d00d11186fd9133e10cbf51b5fada4dfa5cb3d (diff) |
new
Diffstat (limited to 'udkapi')
-rw-r--r-- | udkapi/com/sun/star/uno/SecurityException.idl | 85 | ||||
-rw-r--r-- | udkapi/com/sun/star/uno/XCurrentContext.idl | 124 |
2 files changed, 209 insertions, 0 deletions
diff --git a/udkapi/com/sun/star/uno/SecurityException.idl b/udkapi/com/sun/star/uno/SecurityException.idl new file mode 100644 index 000000000000..c7ba0f90cf2e --- /dev/null +++ b/udkapi/com/sun/star/uno/SecurityException.idl @@ -0,0 +1,85 @@ +/************************************************************************* + * + * $RCSfile: SecurityException.idl,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: dbo $ $Date: 2000-12-12 16:43:31 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ +#ifndef __com_sun_star_uno_SecurityException_idl__ +#define __com_sun_star_uno_SecurityException_idl__ + +#ifndef __com_sun_star_uno_RuntimeException_idl__ +#include <com/sun/star/uno/RuntimeException.idl> +#endif + + +//============================================================================= + + module com { module sun { module star { module uno { + +//============================================================================= + +/** Base exception for all security related exceptions. +*/ +exception SecurityException : com::sun::star::uno::RuntimeException +{ +}; + +//============================================================================= + +}; }; }; }; + +#endif diff --git a/udkapi/com/sun/star/uno/XCurrentContext.idl b/udkapi/com/sun/star/uno/XCurrentContext.idl new file mode 100644 index 000000000000..d1660b92491b --- /dev/null +++ b/udkapi/com/sun/star/uno/XCurrentContext.idl @@ -0,0 +1,124 @@ +/************************************************************************* + * + * $RCSfile: XCurrentContext.idl,v $ + * + * $Revision: 1.1 $ + * + * last change: $Author: dbo $ $Date: 2000-12-12 16:43:44 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ +#ifndef __com_sun_star_uno_XCurrentContext_idl__ +#define __com_sun_star_uno_XCurrentContext_idl__ + +#ifndef __com_sun_star_uno_XInterface_idl__ +#include <com/sun/star/uno/XInterface.idl> +#endif + +#ifndef __com_sun_star_lang_XMultiServiceFactory_idl__ +#include <com/sun/star/lang/XMultiServiceFactory.idl> +#endif + +#ifndef __com_sun_star_security_XAccessController_idl__ +#include <com/sun/star/security/XAccessController.idl> +#endif + +#ifndef __com_sun_star_security_auth_login_XLoginContext_idl__ +#include <com/sun/star/security/auth/login/XLoginContext.idl> +#endif + +module com { module sun { module star { module uno { + +//============================================================================= + +/** Thread local execution context for UNO. + Arbitrary values can be set and retrieved at the context. +*/ +[ uik(0F18C234-B3F2-4018-BE369BF4-3912C863), ident("XCurrentContext", 1.0) ] +interface XCurrentContext : com::sun::star::uno::XInterface +{ + /** value of name: com.sun.star.ServiceManager + + @return service manager to be used + */ + com::sun::star::lang::XMultiServiceFactory getServiceManager(); + /** value of name: com.sun.star.security.AccessController + + @return access controller to be used + */ + com::sun::star::security::XAccessController getAccessController(); + /** value of name: com.sun.star.security.auth.login.LoginContext + + @return login context to be used + */ + com::sun::star::security::auth::login::XLoginContext getLoginContext(); + + /** Retrieve value with given name. + + @param Name name of value + @return value + */ + any getValue( [in] string Name ); + /** Set value giving a name. + + @param Name name of value + @param Value value + */ + void setValue( [in] string Name, [in] any Value ); +}; + +//============================================================================= + +}; }; }; }; + +#endif |