alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2003 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.api.web.dd;

import org.netbeans.api.web.dd.common.*;
/**
 * Generated interface for SecurityConstraint element.
 *
 *

Important note: Do not provide an implementation of this interface unless you are a DD API provider! *

*/ public interface SecurityConstraint extends CommonDDBean, DisplayNameInterface, CreateCapability, FindCapability { /** Setter for web-resource-collection element. * @param index position in the array of elements * @param valueInterface web-resource-collection element (WebResourceCollection object) */ public void setWebResourceCollection(int index, org.netbeans.api.web.dd.WebResourceCollection valueInterface); /** Getter for web-resource-collection element. * @param index position in the array of elements * @return web-resource-collection element (WebResourceCollection object) */ public org.netbeans.api.web.dd.WebResourceCollection getWebResourceCollection(int index); /** Setter for web-resource-collection elements. * @param value array of web-resource-collection elements (WebResourceCollection objects) */ public void setWebResourceCollection(org.netbeans.api.web.dd.WebResourceCollection[] value); /** Getter for web-resource-collection elements. * @return array of web-resource-collection elements (WebResourceCollection objects) */ public org.netbeans.api.web.dd.WebResourceCollection[] getWebResourceCollection(); /** Returns size of web-resource-collection elements. * @return number of web-resource-collection elements */ public int sizeWebResourceCollection(); /** Adds web-resource-collection element. * @param valueInterface web-resource-collection element (WebResourceCollection object) * @return index of new web-resource-collection */ public int addWebResourceCollection(org.netbeans.api.web.dd.WebResourceCollection valueInterface); /** Removes web-resource-collection element. * @param valueInterface web-resource-collection element (WebResourceCollection object) * @return index of the removed web-resource-collection */ public int removeWebResourceCollection(org.netbeans.api.web.dd.WebResourceCollection valueInterface); /** Setter for auth-constraint element. * @param valueInterface auth-constraint element (AuthConstraint object) */ public void setAuthConstraint(org.netbeans.api.web.dd.AuthConstraint valueInterface); /** Getter for auth-constraint element. * @return auth-constraint element (AuthConstraintobject) */ public org.netbeans.api.web.dd.AuthConstraint getAuthConstraint(); /** Setter for user-data-constraint element. * @param valueInterface user-data-constraint element (UserDataConstraint object) */ public void setUserDataConstraint(org.netbeans.api.web.dd.UserDataConstraint valueInterface); /** Getter for user-data-constraint element. * @return user-data-constraint element (UserDataConstraint object) */ public org.netbeans.api.web.dd.UserDataConstraint getUserDataConstraint(); }
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.