public PathPoller()

in src/main/java/org/apache/sling/testing/clients/util/poller/PathPoller.java [37:46]


    public PathPoller(AbstractSlingClient client, String path, long waitInterval, long waitCount, int... expectedStatus) {
        super(waitInterval, waitCount);
        this.client = client;
        this.path = path;
        if (null == expectedStatus || expectedStatus.length == 0) {
            this.expectedStatus = new int[]{200};
        } else {
            this.expectedStatus = expectedStatus;
        }
    }