Examples of ModifyPropertyFilter


Examples of com.google.enterprise.connector.util.filter.ModifyPropertyFilter

        + ",\"content\":\"now is the time\"" + ",\"author\":\"ziff\""
        + ",\"google:contenturl\":\"http://www.sometesturl.com/test\""
        + "}\r\n" + "";
    Document document = JcrDocumentTest.makeDocumentFromJson(json1);

    ModifyPropertyFilter mpf = new ModifyPropertyFilter();
    mpf.setPropertyName("author");
    mpf.setPattern("ziff");
    mpf.setReplacement("johnson");
    mpf.setOverwrite(true);

    String resultXML = feedDocument(document, mpf, false);

    assertStringContains("last-modified=\"Thu, 01 Jan 1970 00:00:10 GMT\"",
        resultXML);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.