All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.jcr.security.AccessControlPolicyIterator Maven / Gradle / Ivy

Go to download

The Content Repository API for JavaTM Technology Version 2.0 is specified by JSR-283. This module contains the complete API as specified.

The newest version!
/*
 * Copyright 2008 Day Management AG, Switzerland. All rights reserved.
 */
package javax.jcr.security;

import javax.jcr.RangeIterator;

/**
 * Allows easy iteration through a list of AccessControlPolicys
 * with nextAccessControlPolicy as well as a skip
 * method inherited from RangeIterator.
 *
 * @since JCR 2.0
 */
public interface AccessControlPolicyIterator extends RangeIterator {

    /**
     * Returns the next AccessControlPolicy in the iteration.
     *
     * @return the next AccessControlPolicy in the iteration.
     * @throws java.util.NoSuchElementException
     *          if iteration has no more
     *          AccessControlPolicys.
     */
    public AccessControlPolicy nextAccessControlPolicy();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy