/usr/include/libsignon-glib/signon-identity-info.h is in libsignon-glib-dev 1.13+16.04.20151209.1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | /* vi: set et sw=4 ts=4 cino=t0,(0: */
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of libsignon-glib
*
* Copyright (C) 2009-2010 Nokia Corporation.
* Copyright (C) 2011 Canonical Ltd.
*
* Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#ifndef _SIGNON_IDENTITY_INFO_H_
#define _SIGNON_IDENTITY_INFO_H_
#include <glib-object.h>
G_BEGIN_DECLS
/**
* SignonIdentityInfo:
*
* Opaque struct. Use the accessor functions below.
*/
typedef struct _SignonIdentityInfo SignonIdentityInfo;
/**
* SignonIdentityType:
* @SIGNON_IDENTITY_TYPE_OTHER: an identity that is not an app, web or network
* @SIGNON_IDENTITY_TYPE_APP: an application identity
* @SIGNON_IDENTITY_TYPE_WEB: a web identity
* @SIGNON_IDENTITY_TYPE_NETWORK: a network server identity
*
* Types used in #SignonIdentityInfo.
*/
typedef enum {
SIGNON_IDENTITY_TYPE_OTHER = 0,
SIGNON_IDENTITY_TYPE_APP = 1 << 0,
SIGNON_IDENTITY_TYPE_WEB = 1 << 1,
SIGNON_IDENTITY_TYPE_NETWORK = 1 << 2
} SignonIdentityType;
GType signon_identity_info_get_type (void) G_GNUC_CONST;
SignonIdentityInfo *signon_identity_info_new ();
void signon_identity_info_free (SignonIdentityInfo *info);
SignonIdentityInfo *signon_identity_info_copy (const SignonIdentityInfo *other);
gint signon_identity_info_get_id (const SignonIdentityInfo *info);
const gchar *signon_identity_info_get_username (const SignonIdentityInfo *info);
gboolean signon_identity_info_get_storing_secret (const SignonIdentityInfo *info);
const gchar *signon_identity_info_get_caption (const SignonIdentityInfo *info);
const GHashTable *signon_identity_info_get_methods (const SignonIdentityInfo *info);
const gchar* const *signon_identity_info_get_realms (const SignonIdentityInfo *info);
const gchar* const *signon_identity_info_get_access_control_list (const SignonIdentityInfo *info);
SignonIdentityType signon_identity_info_get_identity_type (const SignonIdentityInfo *info);
void signon_identity_info_set_username (SignonIdentityInfo *info, const gchar *username);
void signon_identity_info_set_secret (SignonIdentityInfo *info,
const gchar *secret,
gboolean store_secret);
void signon_identity_info_set_caption (SignonIdentityInfo *info, const gchar *caption);
void signon_identity_info_set_method (SignonIdentityInfo *info, const gchar *method,
const gchar* const *mechanisms);
void signon_identity_info_remove_method (SignonIdentityInfo *info, const gchar *method);
void signon_identity_info_set_realms (SignonIdentityInfo *info,
const gchar* const *realms);
void signon_identity_info_set_access_control_list (SignonIdentityInfo *info,
const gchar* const *access_control_list);
void signon_identity_info_set_identity_type (SignonIdentityInfo *info,
SignonIdentityType type);
G_END_DECLS
#endif /* _SIGNON_IDENTITY_INFO_H_ */
|