summaryrefslogtreecommitdiff
path: root/src/com/sun/apoc/spi/cfgtree/policynode/ReadWritePolicyNodeImpl.java
blob: ee9184f7fc0a6eac7098fc10705a256b72277849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 * 
 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
 * 
 * The contents of this file are subject to the terms of either
 * the GNU General Public License Version 2 only ("GPL") or
 * the Common Development and Distribution License("CDDL")
 * (collectively, the "License"). You may not use this file
 * except in compliance with the License. You can obtain a copy
 * of the License at www.sun.com/CDDL or at COPYRIGHT. See the
 * License for the specific language governing permissions and
 * limitations under the License. When distributing the software,
 * include this License Header Notice in each file and include
 * the License file at /legal/license.txt. If applicable, add the
 * following below the License Header, with the fields enclosed
 * by brackets [] replaced by your own identifying information:
 * "Portions Copyrighted [year] [name of copyright owner]"
 * 
 * Contributor(s):
 * 
 * If you wish your version of this file to be governed by
 * only the CDDL or only the GPL Version 2, indicate your
 * decision by adding "[Contributor] elects to include this
 * software in this distribution under the [CDDL or GPL
 * Version 2] license." If you don't indicate a single choice
 * of license, a recipient has the option to distribute your
 * version of this file under either the CDDL, the GPL Version
 * 2 or to extend the choice of license to its licensees as
 * provided above. However, if you add GPL Version 2 code and
 * therefore, elected the GPL Version 2 license, then the
 * option applies only if the new code is made subject to such
 * option by the copyright holder.
 */

package com.sun.apoc.spi.cfgtree.policynode;

import java.util.Enumeration;

import com.sun.apoc.spi.SPIException;
import com.sun.apoc.spi.cfgtree.ConfigElementImpl;
import com.sun.apoc.spi.cfgtree.NodeKey;
import com.sun.apoc.spi.cfgtree.OperationType;
import com.sun.apoc.spi.cfgtree.property.InvalidPropertyNameException;
import com.sun.apoc.spi.cfgtree.property.Property;
import com.sun.apoc.spi.cfgtree.property.PropertyImpl;
import com.sun.apoc.spi.cfgtree.property.ReadWritePropertyImpl;
import com.sun.apoc.spi.policies.Policy;

/**
  * Class for a read write policy node.
  *
  */
public class ReadWritePolicyNodeImpl extends PolicyNodeImpl {

    public static final String ID_SEPARATOR = ".";
    
    /** default node - used for reset */
    public ReadWritePolicyNodeImpl mDefaultNode;
    private boolean mHasBeenModified = false;

    /**
      * Adds a new node.
      *
      * @param aName    name of the node to be added
      * @return         the newly added <code>ReadWritePolicyNodeImpl</code>
      * @throws         <code>SPIException</code> if error occurs
      */
    public PolicyNode addNode(String aName) throws SPIException {
        return addNode(aName, false);
    }

    /**
      * Adds a new node. Operation attribute is set to true if
      * appropriate.
      *
      * @param aName          name of the node to be added
      * @param aIsReplaceOp   <code>true</code> if operation attribute
      *                       should be set, otherwise <code>false</code>
      * @return              the newly added <code>ReadWritePolicyNodeImpl</code>
      * @throws SPIException if error occurs
      * @throws InvalidPolicyNodeNameException if aName is null
      */
    public PolicyNode addNode(String aName, boolean aIsReplaceOp) 
        throws SPIException {
	    if (aName == null) {
	        throw new InvalidPolicyNodeNameException(aName);
	    }   
        checkIfReadOnly();
	    ReadWritePolicyNodeImpl newNode = new ReadWritePolicyNodeImpl();
	    newNode.setName(aName);
	    newNode.setSettingsForAddedNode(appendToPath(getAbsolutePath(), aName),
		    mPolicyTree.getPolicy(), false);
        newNode.mPolicyTree = mPolicyTree;
        if (aIsReplaceOp) {
            newNode.setOperationType(OperationType.OP_REPLACE);
        }
   	    addChildNode(newNode);
        mHasBeenModified = true;
	    return newNode;
    }

    /**
     * Sets default nodes for nodes in the tree. Used for the
     * base source layer during a read merge.
     *
     * @throws       <code>SPIException</code> if error
     * 	             occurs
     */
    public void addNodeDefaults() throws SPIException {
        setDefaultNode((ReadWritePolicyNodeImpl)shallowCopy()) ;
	    if (mAllChildrenNames != null) {
	        for (int i = 0; i < mAllChildrenNames.size(); i++) {
                String name = (String)mAllChildrenNames.get(i);
                ReadWritePolicyNodeImpl childNode =  null;
                if (mChildNodeTable != null) {
                    childNode = 
                        (ReadWritePolicyNodeImpl)mChildNodeTable.get(name);
                    if (childNode != null) {
                        childNode.addNodeDefaults();
                    }
                }
                if (childNode == null && mPropertyTable != null) {
                    ReadWritePropertyImpl property =
                        (ReadWritePropertyImpl)mPropertyTable.get(name);
                    if (property != null) {
                        property.setDefaultProperty(
                                (ReadWritePropertyImpl)property.shallowCopy()) ;
                    }
                }

	        }
        }
    }

    /**
     * Creates and adds a property node to this node.
     *
     * @param aPropertyName   name of new property
     * @return                the new node
     * @throws	SPIException  if error occurs
     * @throws InvalidPropertyNameException if aName is null
     */
     public Property addProperty(String aPropertyName)
             throws SPIException{
	    if (aPropertyName == null) {  
	        throw new InvalidPropertyNameException(aPropertyName);
	    }
	    /* if this node is marked readonly then the property 
           cannot be added */
	    checkIfReadOnly();
	    ReadWritePropertyImpl property = new ReadWritePropertyImpl();
	    property.setName(aPropertyName);
	    property.setAddedAtTopLayer();
	    property.setPath(appendToPath(getAbsolutePath(), aPropertyName));
	    if (isProtected()) {
	        property.setFinalized(true, getAbsolutePath(),
	                			  getOriginOfProtection());
	    }
        property.setPolicyTree(mPolicyTree);
	    addProperty(property);
        mHasBeenModified = true;
	    return property;
    }

    /**
     * Creates and adds a property node to this node.
     *
     * @param aPropertyName   name of new property
     * @param aOriginLayer    layer for which a
     *                        node is being added
     * @return                the new node
     * @throws SPIException   if error occurs
     * @throws InvalidPropertyNameException if aName is null
     */
     public ReadWritePropertyImpl addProperty(String aPropertyName, 
             Policy aOriginLayer) throws SPIException{
	    if (aPropertyName == null) {  
	        throw new InvalidPropertyNameException(aPropertyName);
	    }
	    /* if this node is marked readonly then the property 
           cannot be added */
	    checkIfReadOnly();
	    ReadWritePropertyImpl property = new ReadWritePropertyImpl();
	    property.setName(aPropertyName);
	    property.setAddedAtTopLayer();
	    property.setOrigin(aOriginLayer);
	    property.setPath(appendToPath(getAbsolutePath(), aPropertyName));
	    if (isProtected()) {
	        property.setFinalized(true, getAbsolutePath(),
	                			  getOriginOfProtection());
	    }
	    addProperty(property);
        mHasBeenModified = true;
	    return property;
    }

    /**
      * Adds a node with attribute "op=replace".
      *
      * @param aName      name of the node to be replaced
      * @return           the newly replaced <code>ReadWritePolicyNodeImpl</code>
      * @throws           <code>SPIException</code> if error occurs
      */
    public PolicyNode addReplaceNode(String aName) throws SPIException {
        return addNode(aName, true);
    }


    /**
     * Clears the settings added at this layer.
     *
     * @throws   <code>SPIException</code> if 
     *           error occurs
     */
    public void clear() throws SPIException {
	    /* cannot apply reset operation if node or one
	       of its children is readonly */ 
       	checkIfNodeOrChildrenReadOnly();
	    ReadWritePolicyNodeImpl defaultNode = mDefaultNode;
	    PolicyNodeImpl parent = (PolicyNodeImpl)getParent();
	    if (defaultNode != null) {
	        setNodeAndChildrenToDefault(defaultNode);
	        defaultNode.setOperationType(OperationType.OP_RESET);
            /* replace the node in the policy tree with
	           the default node.  */
	        if (parent != null) {
	            if (parent.isProtected()) {
	                defaultNode.setFinalized(true, 
	                        		getNameOfElementWhereProtectionSet(),
	                        		getOriginOfProtection());
		        }
                parent.addChildNode(defaultNode);
	        } 
	    } else {
	        /* we are dealing with a node added at this layer */
	        checkIfMandatory(); 
	        setOperationType(OperationType.OP_REMOVE);
	    }
        mHasBeenModified = true;
    }

    /**
      * Clears the properties. 
      *
      * @throws        <code>SPIException</code> if error occurs
      */
    public void clearProperties() throws SPIException {
	    checkIfReadOnly();
	    checkIfPropertiesReadOnly();
        if (mPropertyTable == null || mPropertyTable.isEmpty()) { return; }
        Enumeration values = mPropertyTable.elements();
        while (values.hasMoreElements()) {
            ReadWritePropertyImpl property = (ReadWritePropertyImpl)values.nextElement();
            PropertyImpl defaultProperty = property.getDefaultProperty();
            if (defaultProperty != null) {
                addProperty(defaultProperty);
            } else {
                removeProperty(property.getName());
            }
        }
        mHasBeenModified = true;
    }


    /**
     * Returns the default node, that is the node as it was in the
     * default layer. 
     *
     * @return    the default node
     * @throws    <code>SPIException</code> if error occurs
     */
    public ReadWritePolicyNodeImpl getDefaultNode() throws SPIException {
	    return ( (mDefaultNode != null) ? (ReadWritePolicyNodeImpl)mDefaultNode.shallowCopy() : null);
    }

    /**
      * Returns a boolean indicating if the node has
      * been modified. 
      *
      * @return    <code>true</code> if the node has been
      *            modified, otherwise <code>false</code>
      */
    public boolean hasBeenModified() {
        if (mHasBeenModified) { return mHasBeenModified; }
        if (mAllChildrenNames != null &&
                !mAllChildrenNames.isEmpty()) {
            for (int i = 0 ; i < mAllChildrenNames.size(); ++i) {
                String name = (String)mAllChildrenNames.get(i);
                ReadWritePolicyNodeImpl policyNode = null;
                if (mChildNodeTable != null && !mChildNodeTable.isEmpty()) {
                    policyNode = 
                        (ReadWritePolicyNodeImpl)mChildNodeTable.get(name);
                    if (policyNode != null) {
                        if (policyNode.hasBeenModified()) {
                            return true;
                        }
                    }
                }
                if (policyNode == null && mPropertyTable != null &&
                        !mPropertyTable.isEmpty()) {
                    ReadWritePropertyImpl property = 
                        (ReadWritePropertyImpl)mPropertyTable.get(name);
                    if (property != null) {
                        if (property.hasBeenModified()) {
                            return true;
                        }
                    }
                }
            }
        }
        return mHasBeenModified;
    }


    /**
     * Carries out the update merge operations specified in
     * this node's children.
     *
     * @param aOutputNode	        the equivalent node for the new
     *				        update layer
     * @param aLayer		        layer to update
     * @param aUpdateNodePath	        the path to this result node (used
     *				        for exception messages
     * @return			        <code>true</code> if any node children
     *				        are required for the new update layer, 
     * 				        otherwise <code>false</code>
     * @throws			        <code>SPIException</code> if 
     *				        error occurs
     */
    public boolean processUpdateNodeChildren(PolicyNodeImpl aOutputNode,
            								 Policy aLayer, 
            								 String aUpdateNodePath)
    	throws SPIException {
	    boolean update = false;
	    /* if this layer removed any elements,
	        then add these nodes (with op=remove) to the 
	        output child node */
	    if (mRemovedChildren != null) {
	        for (int i = 0; i < mRemovedChildren.size(); i++) { 
	            Object removedChild = 
		            mRemovedChildren.get(i);
	            if (removedChild != null) {
                    if (removedChild instanceof PolicyNodeImpl) {
	                    aOutputNode.addChildNode(
	                    (PolicyNodeImpl)((PolicyNodeImpl)removedChild).shallowCopy());
	                    update = true;
                    } else if (removedChild instanceof PropertyImpl) {
	                    aOutputNode.addProperty(
	                    (PropertyImpl)((PropertyImpl)removedChild).shallowCopy());
	                    update = true;
                    }
		        }
	        }
	    }
	    boolean childUpdate = false;
	    if (mAllChildrenNames != null) {
	        int size = mAllChildrenNames.size();
	        for (int i = 0; i < size; i++) {
                String name = (String)mAllChildrenNames.get(i);
		        String updatePath = null;
		        PolicyNodeImpl updateNode = null;
                if (mChildNodeTable != null) {
                    updateNode = 
		            (PolicyNodeImpl)mChildNodeTable.get(name);
                    if (updateNode != null) {
                        PolicyNodeImpl outputChildNode = 
                            (PolicyNodeImpl)updateNode.shallowCopy();
                        aOutputNode.addChildNode(outputChildNode);
                        updatePath = appendToPath(aUpdateNodePath, updateNode.getName());
                        childUpdate = ((ReadWritePolicyNodeImpl)updateNode)
                            	.processUpdateOperation(outputChildNode, 
                            	        				aLayer, 
                            	        				updatePath);
	                    /* if one or more children are required, then update
	                        required is set to true */
	                    if (!childUpdate) {
	                        ((PolicyNodeImpl)aOutputNode).deleteChildNode(
			                outputChildNode.getName());
	                    } else {
	                        update = true;
		                }
                     }
                }
                if (updateNode == null && mPropertyTable != null) {
                    PropertyImpl property = (PropertyImpl)mPropertyTable.get(name);
                    if (property != null) {
		                updatePath = appendToPath(aUpdateNodePath, property.getName());
                        PropertyImpl outputProperty =
                             (PropertyImpl)property.shallowCopy();
                        aOutputNode.addProperty(outputProperty);
                        childUpdate = ((ReadWritePropertyImpl)property)
                        	.processUpdateOperation(outputProperty, aLayer,
                        	        				updatePath);
	                    /* if one or more children are required, then update
	                        required is set to true */
	                    if (!childUpdate) {
	                        ((PolicyNodeImpl)aOutputNode).deleteProperty(
			                outputProperty);
	                    } else {
	                        update = true;
		                }
                    }
                }
            }
        }
	    return update || childUpdate;
    }

  
    /**
     * Determines from this update node which operation is to
     * be carried out during the read merge, and then invokes
     * the corresponding operation method.
     *
     * @param aOutputNode	        the equivalent node for the new
     *				        update layer
     * @param aLayer			layer to update
     * @param aUpdateNodePath	        the path to this update node (used
     *				        for exception messages
     * @return			        <code>true</code> if this node is 
     *                                  required for the new update layer,
     *				        otherwise <code>false</code>
     * @throws			        <code>SPIException</code> 
     *                                  if error occurs     
     */
    public boolean processUpdateOperation(PolicyNodeImpl aOutputNode, 
            							  Policy aLayer,
            							  String aUpdateNodePath) 
		throws SPIException {   
	    boolean update = false;
	    switch (mOperationType) {
            case OperationType.OP_REPLACE:
		        update = updateReplaceNode(aOutputNode, aLayer,
				aUpdateNodePath);
		        break;
            case OperationType.OP_REMOVE:
		        update = updateRemoveNode(aOutputNode, aLayer, 
					aUpdateNodePath);
		        break;
            case OperationType.OP_RESET:
		        update = updateResetNode(aOutputNode, aLayer,
					aUpdateNodePath);
		        break;
            case OperationType.OP_UNKNOWN: //defaults to OP_MODIFY
            case OperationType.OP_MODIFY:
                update = updateModifyNode(aOutputNode, aLayer,
					aUpdateNodePath);
       		    break;
    	    };
	    return update;
    }

    /**
     * Carries out the read merge modification operation specified in
     * this update node.
     *
     * @param aResultNode	  node that will be the result of
     *				  the read merge process
     * @param aUpdateNodeKey	  information on update node
     * @param aUpdateNodePath	  the path to this update node (used
     *				  for exception messages
     * @param aIsParentUpdateLayer indicates if this is a parent update
     *				  layer (needed for handling
     *				  finalized attribute): <code>true</code>
     *				  if final layer, otherwise <code>false</code>
     * @throws			  <code>SPIException</code> if error 
     *                            occurs	
     */
    public void readModifyNode(PolicyNodeImpl aResultNode,
	    NodeKey aUpdateNodeKey, String aUpdateNodePath,
	    boolean aIsParentUpdateLayer) throws SPIException {
	    /* If the node exists in the source layer and is
	        marked readonly there then no processing takes place.*/
	    PolicyNodeImpl resultNode =
	        (PolicyNodeImpl)aResultNode.getChild(getName());
	    if (resultNode != null) {
	        if ( resultNode.isReadOnly()) { return; } 
	        /* if the update node is mandatory, then set
	           this flag (and source) on the resulting node */
	        if (isMandatory()) {
                resultNode.setMandatoryFlag();
		        resultNode.setOriginOfMandatory(getOriginOfMandatory());
	        }
	    } else {
	        /* node is introduced by this update layer */
	        resultNode = this;
	        aResultNode.addChildNode(resultNode);
	        if (!aIsParentUpdateLayer) {
		        resultNode.setAddedAtTopLayer();
	        }
        }   
	    resultNode.setPath(aUpdateNodePath);
	    if (mAllChildrenNames != null) {
	        int size = mAllChildrenNames.size();
	        for (int i = 0; i < size; i++) {
                String name = (String)mAllChildrenNames.get(i);
		        String updateNodePath = null;
		        PolicyNodeImpl updateNode = null;
                if (mChildNodeTable != null) {
                    updateNode = 
		            (PolicyNodeImpl)mChildNodeTable.get(name);
                    if (updateNode != null) {
                        updateNodePath = appendToPath(aUpdateNodePath, updateNode.getName());
                        updateNode.processReadOperation(resultNode,
                        aUpdateNodeKey, updateNodePath, aIsParentUpdateLayer);
                    }
                }
                if (updateNode == null && mPropertyTable != null) {
                    PropertyImpl property = (PropertyImpl)mPropertyTable.get(name);
                    if (property != null) {
		        updateNodePath = appendToPath(aUpdateNodePath, property.getName());
                        property.processReadOperation(resultNode,
                                aUpdateNodeKey, updateNodePath,
                                aIsParentUpdateLayer);
                    }
                }
            }
	    }
	    /* Check if this update node is finalized. If it is, and this
	        is a parent update layer being processed, then set the readonly
	        attribute to true for this node and its children. If it is
	        finalized and this is a source layer, or is not a parent layer,
	        then set the finalized attribute to true */
	    if (isProtected()) {
            try {
		        resultNode.checkIfNodeOrChildrenReadOnly();
		        resultNode.setFinalized(true, resultNode.getAbsolutePath(),
		                				getOriginOfProtection());
		        if (aIsParentUpdateLayer) {
		            resultNode.setReadOnly();
	           	}
	        } catch (SPIException ignore) {}
	    }
    }

    /**
     * Carries out the removal operation specified in
     * this update node. For a read merge this operation 
     * results in the deletion of specified subnodes of a
     * set.
     *
     * @param aResultNode	  node that will be the result of
     *				  the merge process
     * @param aUpdateNodePath	  the path to this update node (used
     *				  for exception messages)
     * @param aIsParentUpdateLayer indicates if this is a parent update
     *				  layer (needed for handling
     *				  finalized attribute): <code>true</code>
     *				  if final layer, otherwise <code>false</code>
     * @throws			  <code>SPIException</code> if 
     * 				  error occurs	
     */
    public void readRemoveNode(PolicyNodeImpl aResultNode,
		String aUpdateNodePath, boolean aIsParentUpdateLayer)
                                        throws SPIException {
	    PolicyNodeImpl childNode = 
		    aResultNode.getChild(getName());
        if (childNode != null) {
	        if (!childNode.isMandatory()) {
	            /* need to keep track of nodes deleted by the final
	                update layer, in order to include them in the update
		            layer written by updateComponent */
		        if (!aIsParentUpdateLayer) {
		            /* set the operation attribute to "remove" */
		            childNode.setOperationType(OperationType.OP_REMOVE);
		            aResultNode.addRemovedChild(childNode);
		        }
		        aResultNode.deleteChildNode(childNode.getName());
	        }
        }
    }

   
    /**
     * Carries out the replacement operation specified in
     * this update node. This operation can only be applied
     * to dynamic elements. The replace operation can either
     * insert a new node or replace a node that already exists.
     * The corresponding node from the source layer is ignored.  
     *
     * @param aResultNode	  node that will be the result of
     *				  the merge process
     * @param aUpdateNodeKey      information on update node
     * @param aUpdateNodePath	  the path to this update node (used
     *				  for exception messages)
     * @param aIsParentUpdateLayer indicates if this is a parent update
     *				  layer (needed for handling
     *				  finalized attribute): <code>true</code>
     *				  if final layer, otherwise <code>false</code>
     * @throws			  <code>SPIException</code> if error occurs   
     */
    public void readReplaceNode(PolicyNodeImpl aResultNode, 
	    NodeKey aUpdateNodeKey, String aUpdateNodePath, 
	    boolean aIsParentUpdateLayer) throws SPIException {

        /* if the corresponding node exists in the source
           layer, and it is mandatory then the replace operation
           is ignored */
	    PolicyNodeImpl sourceLayerNode =
	        aResultNode.getChild(getName());
     	if (sourceLayerNode != null && 
                sourceLayerNode.isMandatory()) {
	        return;
	    }
     	String path = appendToPath(aResultNode.getAbsolutePath(), getName());
	    setSettingsForAddedNode(path, getOrigin(), aIsParentUpdateLayer);

	    /* Check if this update node is finalized. If it is, and this
	        is a parent layer being processed, then set the readonly
	        attribute to true for this node and its children. If it is
	        finalized and this is a source layer, or if this is not
	        a parent layer, then set the finalized attribute to true */
	    if (isProtected()) {
             setFinalized(true, getAbsolutePath(),getOriginOfProtection());
             if (aIsParentUpdateLayer) { 
	             setReadOnly();
	        }
	    }
	    aResultNode.addChildNode(this);
    }

    /**
     * Removes a child node.
     *
     * @param aNodeName    name of node to be removed
     * @throws	           <code>SPIException</code>
     *			           if error occurs
     */
    public void removeNode(String aNodeName)
			throws SPIException {
	    if (aNodeName == null) { return; }
        PolicyNodeImpl childNode = getChildNode(aNodeName);
        removeNode(childNode);
    }

    /**
     * Removes a child node.
     *
     * @param aNode    node to be removed
     * @throws	       <code>SPIException</code>
     *			if error occurs
     */
    public void removeNode(PolicyNodeImpl aNode)
			throws SPIException {
	    if (aNode == null) { return; }
	    /* if the set is marked readonly, then the
	       operation cannot proceed */
	    checkIfReadOnly();
	    /* if the node or its children are readonly
	       or mandatory then the node cannot be removed */
	    aNode.checkIfNodeOrChildrenReadOnlyOrMandatory();
	    /* If the node was added at a parent layer, then
	        need to write this node to the update layer
	        with "op=remove" attribute set */
	    if (!aNode.isAddedAtTopLayer()) {
            /* set the operation attribute to "remove" */
            aNode.setOperationType(OperationType.OP_REMOVE);
            addRemovedChild((PolicyNodeImpl)aNode);
	    }
        deleteChildNode(aNode.getName());
        mHasBeenModified = true;
    }

    /**
     * Removes a property.
     *
     * @param aPropertyName    name of property to be removed
     * @throws	               <code>SPIException</code>
     *			               if error occurs
     */
    public void removeProperty(String aPropertyName)
			throws SPIException {
	    if (aPropertyName == null) { return; }
        PropertyImpl property = (PropertyImpl)getProperty(aPropertyName);
        removeProperty(property);
    }

    /**
     * Removes a property.
     *
     * @param aProperty    property to be removed
     * @throws	           <code>SPIException</code>
     *			            if error occurs
     */
    public void removeProperty(PropertyImpl aProperty)
			throws SPIException {
	    if (aProperty == null) { return; }
	    /* if the set is marked readonly, then the
	       operation cannot proceed */
	    checkIfReadOnly();
	    /* if the node or its children are readonly
	       or mandatory then the node cannot be removed */
	    aProperty.checkIfReadOnly();
	    aProperty.checkIfMandatory();
	    /* If the node was added at a parent layer, then
	        need to write this node to the update layer
	        with "op=remove" attribute set */
	    if (!aProperty.isAddedAtTopLayer()) {
            /* set the operation attribute to "remove" */
            aProperty.setOperationType(OperationType.OP_REMOVE);
            addRemovedChild(aProperty);
	    }
        deleteProperty(aProperty);
        mHasBeenModified = true;
    }

    /**
     * Sets the default node, that is the node as it was in the
     * default layer. 
     *
     * @param aDefaultNode   the default node
     * @throws 		     <code>SPIException</code> if error
     *			     occurs
     */
    public void setDefaultNode(ReadWritePolicyNodeImpl aDefaultNode) 
				throws SPIException {
	    mDefaultNode = aDefaultNode;
    }

    /**
     * Sets the node and its children to default.
     *
     * @param aDefaultNode  the default for the node on which
     *			    the setDefault() method was called
     * @throws   	    <code>SPIException</code> if error occurs
     */
    private void setNodeAndChildrenToDefault(
		ReadWritePolicyNodeImpl aDefaultNode) throws SPIException {
        if (mChildNodeTable != null) {
            Enumeration childNodes = mChildNodeTable.elements();
            while (childNodes.hasMoreElements()) {
                ReadWritePolicyNodeImpl childNode = 
                    (ReadWritePolicyNodeImpl)childNodes.nextElement();
		        ReadWritePolicyNodeImpl defaultChildNode = 
			      childNode.mDefaultNode;
		        if (defaultChildNode != null) {
	                childNode.setNodeAndChildrenToDefault(
			           defaultChildNode);
		             aDefaultNode.addChildNode(defaultChildNode);
	            }
            }
        }
        if (mPropertyTable != null) {
            Enumeration properties = mPropertyTable.elements();
            while (properties.hasMoreElements()) {
                ReadWritePropertyImpl property = 
                    (ReadWritePropertyImpl)properties.nextElement();
		        ReadWritePropertyImpl defaultProperty = 
			      property.getDefaultProperty();
		        if (defaultProperty != null) {
		             aDefaultNode.addProperty(defaultProperty);
	            }
            }
        }
	    if (mRemovedChildren != null) {
		    for (int i = 0; i < mRemovedChildren.size(); i++) {
                Object removedChild = mRemovedChildren.get(i);
                if (removedChild instanceof PolicyNodeImpl) {
		            PolicyNodeImpl defaultRemovedChildNode =
			            ((ReadWritePolicyNodeImpl)removedChild).getDefaultNode();
		            if (defaultRemovedChildNode != null) {
	                    aDefaultNode.addChildNode(defaultRemovedChildNode);
		            }
                } else {
                    ReadWritePropertyImpl defaultRemovedProperty = 
                        ((ReadWritePropertyImpl)removedChild).getDefaultProperty();
                    if (defaultRemovedProperty != null) {
                        aDefaultNode.addProperty(defaultRemovedProperty);
		            }   
	            }
	        }
	    }   
        aDefaultNode.setDefaultNode((ReadWritePolicyNodeImpl)aDefaultNode.shallowCopy());
    }

    /**
     * Sets the value of the finalized property of the node,
     * and its children. 
     *
     * @param aIsProtected  <code>true</code> if the node 
     *					    is finalized, <code>false</code> 
     *					    otherwise
     * @throws              <code>SPIException</code> if operation 
     *                      is not permitted
     */
    public void setProtected(boolean aIsProtected) 
                        throws SPIException {
        setProtected(aIsProtected, getAbsolutePath(),
                	 mPolicyTree.getPolicy());
    }

    /**
     * Sets the value of the finalized property of the node,
     * and its children. 
     *
     * @param aIsProtected  <code>true</code> if the node 
     *					    is finalized, <code>false</code> 
     *					    otherwise
     * @param aNameOfElementWhereProtectionSet  name of the node where 
     *                                      the flag was set 
     *                                      (null if aIsProtected is 
     *				                        <code>false</code>
     * @param aOriginOfProtection       layer where the flag was set 
     *                                 (null if aIsProtected is 
     *                                  <code>false</code>
     * @throws              <code>SPIException</code> if operation 
     *                      is not permitted
     */
    public void setProtected(boolean aIsProtected, 
							 String aNameOfElementWhereProtectionSet,
							 Policy aOriginOfProtection) 
    	throws SPIException {
        checkIfNodeOrChildrenReadOnly();
        mIsProtected = aIsProtected ;
	    mNameOfElementWhereProtectionSet = aNameOfElementWhereProtectionSet;
	    mOriginOfProtection = aOriginOfProtection;
        mHasBeenModified = true;
	    if (mAllChildrenNames != null) {
	        for (int i = 0; i < mAllChildrenNames.size(); i++) {
                String name = (String)mAllChildrenNames.get(i);
                PolicyNodeImpl childNode =  null;
                if (mChildNodeTable != null) {
                    childNode = 
                        (PolicyNodeImpl)mChildNodeTable.get(name);
                    if (childNode != null) {
                        childNode.setFinalized(aIsProtected,
                                aNameOfElementWhereProtectionSet,
                                aOriginOfProtection);
                    }
                }
                if (childNode == null && mPropertyTable != null) {
                    PropertyImpl property =
                        (PropertyImpl)mPropertyTable.get(name);
                    if (property != null) {
                        property.setFinalized(aIsProtected,
                                aNameOfElementWhereProtectionSet,
                                aOriginOfProtection);
                    }
                }

	        }
	    }
    }

    /**
      * Sets the node name. 
      */
    public void setName(String aName)  {
        mHasBeenModified = true;
        mName = aName;
    }
    
    /**
     * Returns a shallow copy of the node (excludes child nodes).
     *
     * @return      copy of the node
     * @throws      <code>SPIException</code> if cannot 
     *		    create copy
     */
    public ConfigElementImpl shallowCopy() throws SPIException {
        ConfigElementImpl retNode = super.shallowCopy();
        ((ReadWritePolicyNodeImpl)retNode).mDefaultNode = mDefaultNode;
        return retNode;
    }

    /**
     * Carries out the update merge modification operation specified in
     * this result node.
     *
     * @param aOutputNode              the equivalent node for the new
     * 				       update layer
     * @param aLayer		       layer to update
     * @param aUpdateNodePath	       the path to this result node (used
     *				       for exception messages
     * @return                         <code>true</code> if this node 
     *				       is required for the new update layer, 
     *				       otherwise <code>false</code>
     * @throws			       <code>SPIException</code> if 
     *				       error occurs     
     */
    public boolean updateModifyNode(PolicyNodeImpl aOutputNode, 
            						Policy aLayer, 
            						String aUpdateNodePath) 
		throws SPIException{
	    boolean update = false;
        /* should be included if the protect function was 
	        applied directly to this node. */
	    if (mIsProtected) {
	        if (getParent() == null || !
                    ((PolicyNodeImpl)getParent()).isProtected()) { 
	            update = true;
	        }
        } else if (mIsMandatory && 
		    aLayer.equals(mOriginOfMandatory) ) {
	        update = true;
	    }
        
	    /* if this layer removed any inherited dynamic members,
	        then add these nodes (with op=remove) to the
	        output child node */
	    if (mRemovedChildren != null) { 
	        for (int i = 0; i < mRemovedChildren.size(); i ++) {
	            Object removedChild =
			        mRemovedChildren.get(i);
	            if (removedChild != null) {
                    if (removedChild instanceof PolicyNodeImpl) {
	                    aOutputNode.addChildNode(
			                (PolicyNodeImpl)((PolicyNodeImpl)removedChild).shallowCopy());
	                    update = true;
                    } else if (removedChild instanceof PropertyImpl) {
	                    aOutputNode.addProperty(
			                (PropertyImpl)((PropertyImpl)removedChild).shallowCopy());
	                    update = true;
                    }
		        }
	        }
	    }
	    boolean childrenUpdate =
		    processUpdateNodeChildren(aOutputNode, 
			aLayer, aUpdateNodePath);
	    return update || childrenUpdate;
    }

    /**
     * Carries out the update merge remove operation specified in
     * this result node.
     *
     * @param aOutputNode     the equivalent node for the new
     *                        update layer          
     * @param aLayer		  layer to be updated
     * @param aUpdateNodePat  the path to this result node (used
     *                        for exception messages
     * @return                <code>true</code> if this node is 
     *					      required for the new update layer, 
     *					      otherwise <code>false</code>
     * @throws                <code>SPIException</code> if 
     *                        error occurs     
     */
    public boolean updateRemoveNode(PolicyNodeImpl aOutputNode, 
            						Policy aLayer, 
            						String aUpdateNodePath) 
    	throws SPIException {
	    PolicyNodeImpl parentNode = (PolicyNodeImpl)getParent();
	    if (!mIsAddedAtTopLayer) {
	       parentNode.addRemovedChild(this);
	    }
	    // delete the node from the cached node
        parentNode.deleteChildNode(mName);
	    return mIsAddedAtTopLayer ? false : true;
    }


    /**
     * Carries out the update merge replacement operation specified in
     * this result node.
     *
     * @param aOutputNode               the equivalent node for the new
     *                                  update layer          
     * @param aLayer			layer to be updated
     * @param aUpdateNodePath           the path to this result node (used
     *                                  for exception messages
     * @return                          <code>true</code> if this node 
     *                                  is required for the new update layer, 
     *				        otherwise <code>false</code>
     * @throws                          <code>SPIException</code> if 
     *                                  error occurs     
     */
    public boolean updateReplaceNode(PolicyNodeImpl aOutputNode, 
            						 Policy aLayer,
            						 String aUpdateNodePath) 
		throws SPIException {
	    boolean update = false;
	    boolean childrenUpdate = false;
	    if (mIsAddedAtTopLayer) {
	        update = true;
	    } else if (mIsProtected) { 
	        if (getParent() == null || 
                    !((PolicyNodeImpl)getParent()).isProtected()) {
                /* should be included if the protect or setMandatory
	                function was applied directly to this node. */
	            update = true;
	        }
	    } else if (mIsMandatory && 
		    mOriginOfMandatory.equals(aLayer)) {
	        update = true;
	    }
	    /* if this layer removed any inherited set members,
	        then add these nodes (with op=remove) to the
	        output child node */
	    if (mRemovedChildren != null) {
	        for (int i = 0; i < mRemovedChildren.size(); i++) {
	            Object removedChild =
			            mRemovedChildren.get(i);
	            if (removedChild != null) {
                    if (removedChild instanceof PolicyNodeImpl) {
	                    aOutputNode.addChildNode(
			                (PolicyNodeImpl)((PolicyNodeImpl)removedChild).shallowCopy());
		                update = true;
                     } else if (removedChild instanceof PropertyImpl) {
	                    aOutputNode.addProperty(
			               (PropertyImpl)((PropertyImpl)removedChild).shallowCopy());
		                update = true;
                     }
		        }
	        }
	    }
	    childrenUpdate = processUpdateNodeChildren(
				aOutputNode, aLayer, aUpdateNodePath);
   	    return update || childrenUpdate;
    }

    /**
     * Carries out the update merge reset operation specified in
     * this result node.
     *
     * @param aOutputNode              the equivalent node for the new
     *                                 update layer          
     * @param aLayer		       layer to be updated
     * @param aUpdateNodePath          the path to this result node (used
     *                                 for exception messages
     * @return                         <code>true</code> if this node is 
     *				       required for the new update layer, 
     *				       otherwise <code>false</code>
     * @throws                         <code>SPIException</code> if 
     *				       error occurs     
     */
    public boolean updateResetNode(PolicyNodeImpl aOutputNode, 
            					   Policy aLayer,
            					   String aUpdateNodePath) 
    	throws SPIException {
	     /* a node with the operation attribute reset will 
	        have been "rolled back" to the default node. However,
	        it may have nested operations */
	    boolean update = false;
	    if (mIsProtected) {
	        if (getParent() == null || 
                    !((PolicyNodeImpl)getParent()).isProtected()) {
                /* should be included if the protect or setMandatory
	            function was applied directly to this node. */
	            update = true;
	        }
	    } else if (mIsMandatory && 
		    mOriginOfMandatory.equals(aLayer)) {
	        update = true;
	    }
        boolean childrenUpdate =
		processUpdateNodeChildren(aOutputNode, aLayer, 
			aUpdateNodePath);
	    if (!update && !childrenUpdate) {
            return false;
	    } else {
	        /* Change the operation attribute to "modify" */ 
	        aOutputNode.setOperationType(OperationType.OP_MODIFY);
            return true;
	    }
    }

}