/* * Copyright 2003 Federal Chancellery Austria * MOA-ID has been developed in a cooperation between BRZ, the Federal * Chancellery Austria - ICT staff unit, and Graz University of Technology. * * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by * the European Commission - subsequent versions of the EUPL (the "Licence"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence at: * http://www.osor.eu/eupl/ * * Unless required by applicable law or agreed to in writing, software * distributed under the Licence is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Licence for the specific language governing permissions and * limitations under the Licence. * * This product combines work with different licenses. See the "NOTICE" text * file for details on the various modules and licenses. * The "NOTICE" text file is part of the distribution. Any derivative works * that you distribute must include a readable copy of the "NOTICE" text file. */ package at.gv.egovernment.moa.id.auth.validator.parep.client.szrgw; /** * This interface specifies all the constants needed for the communication with the SZR-gateway. * * @author Peter Danner */ public interface SZRGWConstants { //PersonData public static final String PD_PREFIX = "pr:"; public static final String PD_POSTFIX = ":pr"; public static final String PERSON = "Person"; public static final String PHYSICALPERSON = "PhysicalPerson"; public static final String CORPORATEBODY = "CorporateBody"; public static final String IDENTIFICATION = "Identification"; public static final String VALUE = "Value"; public static final String TYPE = "Type"; public static final String NAME = "Name"; public static final String GIVENNAME = "GivenName"; public static final String FAMILYNAME = "FamilyName"; public static final String DATEOFBIRTH = "DateOfBirth"; public static final String FULLNAME = "FullName"; public static final String ORGANIZATION = "Organization"; public static final String POSTALADDRESS = "PostalAddress"; public static final String DELIVERYADDRESS = "DeliveryAddress"; public static final String MUNICIPALITY = "Municipality"; public static final String POSTALCODE = "PostalCode"; public static final String STREETNAME = "StreetName"; public static final String BUILDINGNUMBER = "BuildingNumber"; public static final String UNIT = "Unit"; //String ADDRESS = "Address"; //String COUNTRYCODE = "CountryCode"; //String DOORNUMBER = "DoorNumber"; // SZR-gateway constants public static final String SZRGW_REQUEST_NS = "http://reference.e-government.gv.at/namespace/szrgw/20070807#"; public static final String MANDATE_NS = "http://reference.e-government.gv.at/namespace/mandates/20040701#"; public static final String SZRGW_PREFIX = "sgw:"; public static final String SZRGW_POSTFIX = ":sgw"; public static final String CREATE_MANDATE_REQUEST = "CreateMandateRequest"; public static final String CREATE_MANDATE_RESPONSE = "CreateMandateResponse"; public static final String ERROR_RESPONSE = "ErrorResponse"; public static final String MANDATOR = "Mandator"; public static final String REPRESENTATIVE = "Representative"; public static final String MANDATE = "Mandate"; public static final String MANDATE_PREFIX = "md:"; public static final String MANDATE_POSTFIX = ":md"; public static final String SAML_PREFIX = "saml:"; public static final String SAML_POSTFIX = ":saml"; }