lasso/lasso/xml/ecp/ecp_request.h

76 lines
2.4 KiB
C

/* $Id$
*
* Lasso - A free implementation of the Liberty Alliance specifications.
*
* Copyright (C) 2004-2007 Entr'ouvert
* http://lasso.entrouvert.org
*
* Authors: See AUTHORS file in top-level directory.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __LASSO_ECP_REQUEST_H__
#define __LASSO_ECP_REQUEST_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include "../xml.h"
#include "../saml-2.0/saml2_name_id.h"
#include "../saml-2.0/samlp2_idp_list.h"
#define LASSO_TYPE_ECP_REQUEST (lasso_ecp_request_get_type())
#define LASSO_ECP_REQUEST(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), LASSO_TYPE_ECP_REQUEST, LassoEcpRequest))
#define LASSO_ECP_REQUEST_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass), LASSO_TYPE_ECP_REQUEST, LassoEcpRequestClass))
#define LASSO_IS_ECP_REQUEST(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), LASSO_TYPE_ECP_REQUEST))
#define LASSO_IS_ECP_REQUEST_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), LASSO_TYPE_ECP_REQUEST))
#define LASSO_ECP_REQUEST_GET_CLASS(o) \
(G_TYPE_INSTANCE_GET_CLASS ((o), LASSO_TYPE_ECP_REQUEST, LassoEcpRequestClass))
typedef struct _LassoEcpRequest LassoEcpRequest;
typedef struct _LassoEcpRequestClass LassoEcpRequestClass;
struct _LassoEcpRequest {
LassoNode parent;
LassoSaml2NameID *Issuer;
LassoSamlp2IDPList *IDPList;
gboolean mustUnderstand;
gchar *actor;
gchar *ProviderName;
gboolean IsPassive;
};
struct _LassoEcpRequestClass {
LassoNodeClass parent;
};
LASSO_EXPORT int lasso_ecp_request_validate(LassoEcpRequest *request);
LASSO_EXPORT GType lasso_ecp_request_get_type(void);
LASSO_EXPORT LassoNode* lasso_ecp_request_new(const gchar *Issuer, gboolean IsPassive,
const gchar *ProviderName, LassoSamlp2IDPList *IDPList);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __LASSO_ECP_REQUEST_H__ */