-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
462 changed files
with
27,376 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/> | ||
<classpathentry kind="lib" path="lib/activation.jar"/> | ||
<classpathentry kind="lib" path="lib/BZip2.jar"/> | ||
<classpathentry kind="lib" path="lib/commons-codec-1.3.jar"/> | ||
<classpathentry kind="lib" path="lib/commons-httpclient-3.0.1.jar"/> | ||
<classpathentry kind="lib" path="lib/commons-jxpath-1.2.jar"/> | ||
<classpathentry kind="lib" path="lib/commons-logging.jar"/> | ||
<classpathentry kind="lib" path="lib/javaws.jar"/> | ||
<classpathentry kind="lib" path="lib/jdom.jar"/> | ||
<classpathentry kind="lib" path="lib/junit.jar"/> | ||
<classpathentry kind="lib" path="lib/log4j.jar"/> | ||
<classpathentry kind="lib" path="lib/mail.jar"/> | ||
<classpathentry kind="lib" path="lib/poi.jar"/> | ||
<classpathentry kind="lib" path="lib/regexp.jar"/> | ||
<classpathentry combineaccessrules="false" kind="src" path="/RetsApi"/> | ||
<classpathentry kind="output" path="target/classes"/> | ||
</classpath> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>RetsServerCompliance</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.jdt.core.javabuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
</natures> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 | ||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve | ||
org.eclipse.jdt.core.compiler.compliance=1.7 | ||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate | ||
org.eclipse.jdt.core.compiler.debug.localVariable=generate | ||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate | ||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
org.eclipse.jdt.core.compiler.source=1.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# | ||
# Properties file for rets 1.0 build script | ||
# | ||
src=src | ||
config=config | ||
lib=lib | ||
build=local.build | ||
classes=local.build/classes | ||
deploy=. | ||
#deploy=/deploy | ||
#deploy=../../deploy/retsCompliance | ||
root.config=/config | ||
war.build=war.build | ||
web=web | ||
testscripts=config/TestScripts | ||
LOCAL_TOMCAT_HOME=C:/Program Files/Tomcat 5.5 | ||
KEYSTORE_PASSWORD=avantia | ||
KEYSTORE_FILE_PATH=./myKeystore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
<project name="retsCompliance" default="jar" basedir="."> | ||
|
||
<!-- set global properties for this build --> | ||
<property file="build.properties"/> | ||
|
||
<!-- setup the required jar file and classes for compile --> | ||
<path id="java.classpath"> | ||
<fileset dir="${lib}"> | ||
<include name="*.jar"/> | ||
</fileset> | ||
</path> | ||
|
||
<target name="deploy" depends="compile" description="Main deploy target for this build. Files will be copied to $deploy dir for running the application"> | ||
<delete file="lib/RETSServerCompliance.jar"/> | ||
<!-- All of the necessary files are copied to "your ${deploy} dir" for running/testing the app --> | ||
<copy todir="${deploy}"> | ||
<fileset dir="." includes="*.bat"/> | ||
<fileset dir="." includes="readme.txt"/> | ||
<fileset dir="${build}" includes="**"/> | ||
</copy> | ||
<copy todir="${deploy}/${lib}"> | ||
<fileset dir="${lib}" includes="*.jar"/> | ||
</copy> | ||
<copy todir="${deploy}/${config}"> | ||
<fileset dir="${config}" includes="**/*" excludes="log4j.properties"/> | ||
</copy> | ||
<!--Also COPY necessary files are copied to "your ${root.config} dir" for running app --> | ||
<copy todir="${root.config}"> | ||
<fileset dir="${build}" includes="*.dtd"/> | ||
<fileset dir="${config}" includes="*.properties"/> | ||
<fileset dir="${config}" includes="**/*.xml"/> | ||
<fileset dir="${config}" includes="**/*.dtd"/> | ||
</copy> | ||
</target> | ||
|
||
<target name="jar" depends="deploy" description="Create Jar file for a 'binary' release of application"> | ||
<jar jarfile="${deploy}/lib/RETSServerCompliance.jar"> | ||
<fileset dir="${classes}"/> | ||
</jar> | ||
<delete dir="${classes}"/> | ||
<delete dir="${deploy}/classes"/> | ||
</target> | ||
|
||
<target name="clean" description="To clean up old Build directory."> | ||
<delete dir="${build}"/> | ||
</target> | ||
|
||
<target name="cleanall" description="To clean up old Build AND deploy directories."> | ||
<delete dir="${build}"/> | ||
<delete dir="${deploy}"/> | ||
<delete> | ||
<fileset dir="${root.config}" includes="**/*"/> | ||
</delete> | ||
|
||
</target> | ||
|
||
<target name="compile"> | ||
<!-- Compile the java code from ${src} into ${build} --> | ||
<mkdir dir="${classes}"/> | ||
<javac srcdir="${src}" destdir="${classes}" debug="on"> | ||
<classpath refid="java.classpath"/> | ||
<exclude name="thinlet/examples/**"/> | ||
</javac> | ||
<copy todir="${classes}" > | ||
<fileset dir="${src}"> | ||
<include name="*.dtd"/> | ||
</fileset> | ||
</copy> | ||
</target> | ||
|
||
<target name="copy.dtds"> | ||
<copy todir="${classes}" > | ||
<fileset dir="."> | ||
<include name="**.dtd"/> | ||
</fileset> | ||
</copy> | ||
<copy todir="classes" > <!-- for local ide execution --> | ||
<fileset dir="."> | ||
<include name="**.dtd"/> | ||
</fileset> | ||
</copy> | ||
</target> | ||
|
||
<target name="webstart.war.setup"> | ||
<mkdir dir="${war.build}"/> | ||
<mkdir dir="${war.build}/app"/> | ||
<mkdir dir="${war.build}/app/lib"/> | ||
<mkdir dir="${war.build}/WEB-INF"/> | ||
<mkdir dir="${war.build}/WEB-INF/lib"/> | ||
<mkdir dir="${war.build}/WEB-INF/classes"/> | ||
<copy todir="${war.build}/app/lib"> | ||
<fileset dir="${lib}"> | ||
<exclude name="**/*.java"/> | ||
<exclude name="**/javaws.jar"/> | ||
</fileset> | ||
</copy> | ||
<copy todir="${war.build}"> | ||
<fileset dir="${web}"> | ||
<exclude name="**/*.java"/> | ||
<exclude name="**/*.class"/> | ||
</fileset> | ||
</copy> | ||
</target> | ||
|
||
<target name="webstart.retsservercompliance.jar" depends="compile, webstart.war.setup, copy.dtds, bundle.testscripts" > | ||
<mkdir dir="${war.build}/app"/> | ||
<copy todir="${classes}"> | ||
<fileset dir="${config}" includes="**/*"/> | ||
</copy> | ||
<jar jarfile="${war.build}/app/lib/RETSServerCompliance.jar"> | ||
<fileset dir="${classes}"/> | ||
</jar> | ||
</target> | ||
|
||
<target name="webstart.retsservercompliance.war" depends="webstart.retsservercompliance.jar, webstart.sign.jars"> | ||
<!-- copy the jar/libs needed for the Retsservercompliance --> | ||
<copy todir="${war.build}/WEB-INF"> | ||
<fileset dir="${web}/WEB-INF"> | ||
<exclude name="**/*.java"/> | ||
</fileset> | ||
</copy> | ||
<jar jarfile="retsservercompliance.war"> | ||
<fileset dir="${war.build}"/> | ||
</jar> | ||
|
||
</target> | ||
|
||
<!-- <target name="webstart.copy2local" depends="webstart.retsservercompliance.jar, webstart.sign.jars">--> | ||
<target name="webstart.copy2local" depends="webstart.retsservercompliance.war"> | ||
<!-- copy the jar/libs needed for the retsservercompliance --> | ||
<copy todir="${LOCAL_TOMCAT_HOME}/webapps" file="retsservercompliance.war" /> | ||
<!-- copy the jar/libs needed for the retsservercompliance --> | ||
<copy todir="${LOCAL_TOMCAT_HOME}/webapps/retsservercompliance"> | ||
<fileset dir="${war.build}"> | ||
<exclude name="**/*.java"/> | ||
</fileset> | ||
</copy> | ||
</target> | ||
|
||
<target name="webstart.sign.jars"> | ||
<signjar | ||
alias="avantia" | ||
keystore="${KEYSTORE_FILE_PATH}" | ||
storepass="${KEYSTORE_PASSWORD}"> | ||
<fileset dir="${war.build}/app/lib" includes="*.jar"/> | ||
</signjar> | ||
</target> | ||
|
||
<target name="webstart.sign.RETSServerCompliance.jar"> | ||
<signjar | ||
alias="avantia" | ||
keystore="${KEYSTORE_FILE_PATH}" | ||
storepass="${KEYSTORE_PASSWORD}" | ||
jar="${war.build}/app/lib/RETSServerCompliance.jar" /> | ||
</target> | ||
|
||
<target name="bundle.testscripts"> | ||
<jar jarfile="${war.build}/app/lib/testscripts.jar"> | ||
<fileset dir="${testscripts}"/> | ||
</jar> | ||
</target> | ||
|
||
<target name="javadoc" description="To produce the documentation for retsCompliance app using JavaDoc."> | ||
<javadoc packagenames="com.realtor.rets.*" | ||
sourcepath="${src}" | ||
defaultexcludes="yes" | ||
destdir="doc" | ||
classpathref="java.classpath" | ||
author="true" | ||
version="true" | ||
use="true" | ||
private="Yes" | ||
windowtitle="RETS Compliance Platform"> | ||
<doctitle> | ||
<![CDATA[<h1>RETS Compliance Platform</h1>]]></doctitle> | ||
<bottom> | ||
<![CDATA[<i>Copyright © 2003 National Association of Realtors - All Rights Reserved.</i>]]></bottom> | ||
<link href="http://developer.java.sun.com/developer/products/xml/docs/api/"/> | ||
</javadoc> | ||
</target> | ||
</project> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.44 KB
classes/com/realtor/rets/compliance/TestExecuter$TestTransaction.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+917 Bytes
classes/com/realtor/rets/compliance/gui/DMQLConfigurator$ComboBoxActionListener.class
Binary file not shown.
Binary file added
BIN
+1.96 KB
classes/com/realtor/rets/compliance/gui/DMQLConfigurator$DMQLSearchParameterSet.class
Binary file not shown.
Binary file added
BIN
+3.44 KB
classes/com/realtor/rets/compliance/gui/DMQLConfigurator$DMQLTableModel.class
Binary file not shown.
Binary file added
BIN
+1.96 KB
classes/com/realtor/rets/compliance/gui/DMQLConfigurator$DMQLTableSelectionListener.class
Binary file not shown.
Binary file added
BIN
+1.87 KB
classes/com/realtor/rets/compliance/gui/DMQLConfigurator$SaveButtonActionListener.class
Binary file not shown.
Binary file added
BIN
+1.17 KB
classes/com/realtor/rets/compliance/gui/DMQLConfigurator$SaveErrorDialog$1.class
Binary file not shown.
Binary file added
BIN
+2.88 KB
classes/com/realtor/rets/compliance/gui/DMQLConfigurator$SaveErrorDialog.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.11 KB
classes/com/realtor/rets/compliance/gui/GenerateFileList$FileExtensionFilter.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.38 KB
classes/com/realtor/rets/compliance/gui/ReportForm$ComponentSizeListener.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.44 KB
classes/com/realtor/rets/compliance/junit/DMQLStandardEvaluatorsTest.class
Binary file not shown.
Binary file added
BIN
+13 KB
classes/com/realtor/rets/compliance/junit/DMQLSystemEvaluatorsTest.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.79 KB
classes/com/realtor/rets/compliance/junit/NegativeTestEvaluatorsTest.class
Binary file not shown.
Binary file added
BIN
+267 Bytes
classes/com/realtor/rets/compliance/metadata/MetadataFacade$1.class
Binary file not shown.
Binary file added
BIN
+1.69 KB
classes/com/realtor/rets/compliance/metadata/MetadataFacade$MetadataFieldSorter.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.73 KB
classes/com/realtor/rets/compliance/tests/CheckGetObjectHeaders.class
Binary file not shown.
Binary file added
BIN
+2.78 KB
classes/com/realtor/rets/compliance/tests/CheckGetObjectHeaders18.class
Binary file not shown.
Binary file added
BIN
+2.78 KB
...s/com/realtor/rets/compliance/tests/CheckGetObjectLocationRequiredResponseHeaders18.class
Binary file not shown.
Binary file added
BIN
+2.46 KB
classes/com/realtor/rets/compliance/tests/CheckGetObjectObjectDataResponseHeaders18.class
Binary file not shown.
Binary file added
BIN
+2.7 KB
classes/com/realtor/rets/compliance/tests/CheckGetObjectOptionalResponseHeaders.class
Binary file not shown.
Binary file added
BIN
+2.8 KB
classes/com/realtor/rets/compliance/tests/CheckGetObjectOptionalResponseHeaders18.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.29 KB
classes/com/realtor/rets/compliance/tests/CheckMultipartResponse.class
Binary file not shown.
Binary file added
BIN
+3.83 KB
classes/com/realtor/rets/compliance/tests/CheckMultipartResponse18.class
Binary file not shown.
Binary file added
BIN
+4.01 KB
classes/com/realtor/rets/compliance/tests/CheckMultipartResponseLocationRequired18.class
Binary file not shown.
Binary file added
BIN
+3.67 KB
classes/com/realtor/rets/compliance/tests/CheckMultipartResponseObjectData18.class
Binary file not shown.
Binary file added
BIN
+2.68 KB
classes/com/realtor/rets/compliance/tests/CheckOptionalResponseHeaders.class
Binary file not shown.
Binary file added
BIN
+2.78 KB
classes/com/realtor/rets/compliance/tests/CheckOptionalResponseHeaders18.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.98 KB
classes/com/realtor/rets/compliance/tests/CheckResponseHeaders18.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+576 Bytes
classes/com/realtor/rets/compliance/tests/InvalidActionPostObject.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+579 Bytes
classes/com/realtor/rets/compliance/tests/InvalidResourceGetObject.class
Binary file not shown.
Binary file added
BIN
+582 Bytes
classes/com/realtor/rets/compliance/tests/InvalidResourcePostObject.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+567 Bytes
classes/com/realtor/rets/compliance/tests/InvalidTypeGetObject.class
Binary file not shown.
Binary file added
BIN
+570 Bytes
classes/com/realtor/rets/compliance/tests/InvalidTypePostObject.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+576 Bytes
classes/com/realtor/rets/compliance/tests/RequestedDTDUnavailable.class
Binary file not shown.
Binary file added
BIN
+588 Bytes
classes/com/realtor/rets/compliance/tests/RequestedPayloadUnavailable.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+498 Bytes
classes/com/realtor/rets/compliance/tests/ValidateCompactMetadata.class
Binary file not shown.
Binary file added
BIN
+506 Bytes
classes/com/realtor/rets/compliance/tests/ValidateCompactMetadata10.class
Binary file not shown.
Binary file added
BIN
+505 Bytes
classes/com/realtor/rets/compliance/tests/ValidateCompactMetadata17.class
Binary file not shown.
Binary file added
BIN
+505 Bytes
classes/com/realtor/rets/compliance/tests/ValidateCompactMetadata18.class
Binary file not shown.
Binary file added
BIN
+494 Bytes
classes/com/realtor/rets/compliance/tests/ValidateCompactSearch.class
Binary file not shown.
Binary file added
BIN
+502 Bytes
classes/com/realtor/rets/compliance/tests/ValidateCompactSearch10.class
Binary file not shown.
Binary file added
BIN
+499 Bytes
classes/com/realtor/rets/compliance/tests/ValidateCompactSearch18.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+520 Bytes
classes/com/realtor/rets/compliance/tests/ValidateGetPayloadListResponse18.class
Binary file not shown.
Binary file added
BIN
+1.63 KB
classes/com/realtor/rets/compliance/tests/ValidateLogoutResponse$1.class
Binary file not shown.
Binary file added
BIN
+6.3 KB
classes/com/realtor/rets/compliance/tests/ValidateLogoutResponse.class
Binary file not shown.
Binary file added
BIN
+499 Bytes
classes/com/realtor/rets/compliance/tests/ValidateLogoutResponse17.class
Binary file not shown.
Binary file added
BIN
+488 Bytes
classes/com/realtor/rets/compliance/tests/ValidateLogoutResponse18.class
Binary file not shown.
Binary file added
BIN
+486 Bytes
classes/com/realtor/rets/compliance/tests/ValidateMetadata10DTD.class
Binary file not shown.
Binary file added
BIN
+486 Bytes
classes/com/realtor/rets/compliance/tests/ValidateMetadata15DTD.class
Binary file not shown.
Binary file added
BIN
+486 Bytes
classes/com/realtor/rets/compliance/tests/ValidateMetadata17DTD.class
Binary file not shown.
Binary file added
BIN
+486 Bytes
classes/com/realtor/rets/compliance/tests/ValidateMetadata18DTD.class
Binary file not shown.
Binary file added
BIN
+515 Bytes
classes/com/realtor/rets/compliance/tests/ValidatePostObjectResponse18.class
Binary file not shown.
Binary file added
BIN
+471 Bytes
classes/com/realtor/rets/compliance/tests/ValidateSearch10DTD.class
Binary file not shown.
Binary file added
BIN
+471 Bytes
classes/com/realtor/rets/compliance/tests/ValidateSearch15DTD.class
Binary file not shown.
Binary file added
BIN
+471 Bytes
classes/com/realtor/rets/compliance/tests/ValidateSearch17DTD.class
Binary file not shown.
Binary file added
BIN
+471 Bytes
classes/com/realtor/rets/compliance/tests/ValidateSearch18DTD.class
Binary file not shown.
Binary file added
BIN
+1.66 KB
classes/com/realtor/rets/compliance/tests/ValidateServerInfoResponse$1.class
Binary file not shown.
Binary file added
BIN
+6.39 KB
classes/com/realtor/rets/compliance/tests/ValidateServerInfoResponse.class
Binary file not shown.
Binary file added
BIN
+519 Bytes
classes/com/realtor/rets/compliance/tests/ValidateServerInfoResponse17.class
Binary file not shown.
Binary file added
BIN
+1.63 KB
classes/com/realtor/rets/compliance/tests/ValidateUpdateResponse$1.class
Binary file not shown.
Binary file added
BIN
+6.3 KB
classes/com/realtor/rets/compliance/tests/ValidateUpdateResponse.class
Binary file not shown.
Binary file added
BIN
+499 Bytes
classes/com/realtor/rets/compliance/tests/ValidateUpdateResponse15.class
Binary file not shown.
Binary file added
BIN
+499 Bytes
classes/com/realtor/rets/compliance/tests/ValidateUpdateResponse17.class
Binary file not shown.
Binary file added
BIN
+499 Bytes
classes/com/realtor/rets/compliance/tests/ValidateUpdateResponse18.class
Binary file not shown.
Binary file added
BIN
+7.85 KB
classes/com/realtor/rets/compliance/tests/dmql/CompactFormatData.class
Binary file not shown.
Binary file added
BIN
+2.18 KB
classes/com/realtor/rets/compliance/tests/dmql/CompactFormatTestEvaluator.class
Binary file not shown.
Binary file added
BIN
+3.74 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLEvalMetadata.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.78 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLResultsStandard.class
Binary file not shown.
Binary file added
BIN
+2.77 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLResultsSystem.class
Binary file not shown.
Binary file added
BIN
+5.63 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLStandardCharResultsAND.class
Binary file not shown.
Binary file added
BIN
+4.33 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLStandardCharResultsContains.class
Binary file not shown.
Binary file added
BIN
+5.65 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLStandardCharResultsOR.class
Binary file not shown.
Binary file added
BIN
+3.96 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLStandardCharResultsStarts.class
Binary file not shown.
Binary file added
BIN
+4.9 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLStandardDateResultsMax.class
Binary file not shown.
Binary file added
BIN
+5.29 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLStandardDateResultsMin.class
Binary file not shown.
Binary file added
BIN
+5.38 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLStandardDateResultsToday.class
Binary file not shown.
Binary file added
BIN
+4.48 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLStandardNumericResultsMax.class
Binary file not shown.
Binary file added
BIN
+4.56 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLStandardNumericResultsMin.class
Binary file not shown.
Binary file added
BIN
+4.84 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLStandardNumericResultsRange.class
Binary file not shown.
Binary file added
BIN
+4.38 KB
...om/realtor/rets/compliance/tests/dmql/DMQLSystemAndStandardNumericResultsRangeMixed.class
Binary file not shown.
Binary file added
BIN
+4.9 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLSystemCharResultsAND.class
Binary file not shown.
Binary file added
BIN
+3.65 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLSystemCharResultsContains.class
Binary file not shown.
Binary file added
BIN
+4.96 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLSystemCharResultsOR.class
Binary file not shown.
Binary file added
BIN
+2.8 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLSystemCharResultsStarts.class
Binary file not shown.
Binary file added
BIN
+4.26 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLSystemDateResultsMax.class
Binary file not shown.
Binary file added
BIN
+4.33 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLSystemDateResultsMin.class
Binary file not shown.
Binary file added
BIN
+4.53 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLSystemDateResultsToday.class
Binary file not shown.
Binary file added
BIN
+4.05 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLSystemNumericResultsMax.class
Binary file not shown.
Binary file added
BIN
+4.05 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLSystemNumericResultsMin.class
Binary file not shown.
Binary file added
BIN
+4.21 KB
classes/com/realtor/rets/compliance/tests/dmql/DMQLSystemNumericResultsRange.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<RETSComplianceTest> | ||
<TestName>GetMetadataDMQLTest</TestName> | ||
<TestDescription>GetMetadata Transaction supporting the Advanced DMQL tests</TestDescription> | ||
<GetMetadataTransaction> | ||
<TransactionLabel>GetMetadataSystemXML</TransactionLabel> | ||
<Type>METADATA-SYSTEM</Type> | ||
<Id>*</Id> | ||
<Format>STANDARD-XML</Format> | ||
<TestEvaluators> | ||
<JavaClassName>com.realtor.rets.compliance.tests.dmql.DMQLEvalMetadata</JavaClassName> | ||
</TestEvaluators> | ||
</GetMetadataTransaction> | ||
</RETSComplianceTest> |
Oops, something went wrong.