00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046 #ifndef XMLRESOURCEIDENTIFIER_HPP
00047 #define XMLRESOURCEIDENTIFIER_HPP
00048
00049 XERCES_CPP_NAMESPACE_BEGIN
00050
00117 class XMLResourceIdentifier
00118 {
00119 public:
00120
00121 enum ResourceIdentifierType {
00122 SchemaGrammar = 0,
00123 SchemaImport,
00124 SchemaInclude,
00125 SchemaRedefine ,
00126 ExternalEntity,
00127 UnKnown = 255
00129 };
00130
00135 XMLResourceIdentifier(const ResourceIdentifierType resourceIdentitiferType
00136 , const XMLCh* const systemId
00137 , const XMLCh* const nameSpace = 0
00138 , const XMLCh* const publicId = 0
00139 , const XMLCh* const baseURI = 0);
00140
00142 ~XMLResourceIdentifier()
00143 {
00144 }
00145
00147
00148
00149
00150
00151 ResourceIdentifierType getResourceIdentifierType() const;
00152 const XMLCh* getPublicId() const;
00153 const XMLCh* getSystemId() const;
00154 const XMLCh* getSchemaLocation() const;
00155 const XMLCh* getBaseURI() const;
00156 const XMLCh* getNameSpace() const;
00157
00158 private :
00159
00160 const ResourceIdentifierType fResourceIdentifierType;
00161 const XMLCh* fPublicId;
00162 const XMLCh* fSystemId;
00163 const XMLCh* fBaseURI;
00164 const XMLCh* fNameSpace;
00165
00166
00167
00168
00169
00170 XMLResourceIdentifier(const XMLResourceIdentifier&);
00171
00172
00173 XMLResourceIdentifier& operator=(const XMLResourceIdentifier&);
00174
00175 };
00176
00177 inline XMLResourceIdentifier::ResourceIdentifierType XMLResourceIdentifier::getResourceIdentifierType() const
00178 {
00179 return fResourceIdentifierType;
00180 }
00181
00182 inline const XMLCh* XMLResourceIdentifier::getPublicId() const
00183 {
00184 return fPublicId;
00185 }
00186
00187 inline const XMLCh* XMLResourceIdentifier::getSystemId() const
00188 {
00189 return fSystemId;
00190 }
00191
00192 inline const XMLCh* XMLResourceIdentifier::getSchemaLocation() const
00193 {
00194 return fSystemId;
00195 }
00196
00197 inline const XMLCh* XMLResourceIdentifier::getBaseURI() const
00198 {
00199 return fBaseURI;
00200 }
00201
00202 inline const XMLCh* XMLResourceIdentifier::getNameSpace() const
00203 {
00204 return fNameSpace;
00205 }
00206
00207 inline XMLResourceIdentifier::XMLResourceIdentifier(const ResourceIdentifierType resourceIdentifierType
00208 , const XMLCh* const systemId
00209 , const XMLCh* const nameSpace
00210 , const XMLCh* const publicId
00211 , const XMLCh* const baseURI )
00212 : fResourceIdentifierType(resourceIdentifierType)
00213 , fPublicId(publicId)
00214 , fSystemId(systemId)
00215 , fBaseURI(baseURI)
00216 , fNameSpace(nameSpace)
00217 {
00218 }
00219
00220 XERCES_CPP_NAMESPACE_END
00221
00222 #endif