From: Dave B. <bla...@us...> - 2013-09-19 16:56:47
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/wbem In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv11235/src/org/sblim/cimclient/internal/wbem Modified Files: Tag: Experimental EnumerateResponseSAX.java EnumerateResponsePULL.java EnumerateResponseDOM.java Log Message: 2666 CR12: Remove ENUMERATIONCONTEXT Index: EnumerateResponseDOM.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/wbem/EnumerateResponseDOM.java,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- EnumerateResponseDOM.java 26 Oct 2009 21:42:54 -0000 1.1.2.2 +++ EnumerateResponseDOM.java 19 Sep 2013 16:56:44 -0000 1.1.2.3 @@ -1,5 +1,5 @@ /** - * (C) Copyright IBM Corp. 2009 + * (C) Copyright IBM Corp. 2009, 2013 * * THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE * ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE @@ -14,6 +14,7 @@ * --------------------------------------------------------------------------- * 2860081 2009-09-17 raman_arora Pull Enumeration Feature (DOM Parser) * 2878054 2009-10-25 raman_arora Pull Enumeration Feature (PULL Parser) + * 2666 2013-09-19 blaschke-oss CR12: Remove ENUMERATIONCONTEXT */ package org.sblim.cimclient.internal.wbem; @@ -96,7 +97,7 @@ // EnumerationContext can't be null if there is more data available if ((endOfSequence.booleanValue() == false) && (enumContext == null)) { throw new IllegalArgumentException( - "Invalid argument : EnumerationContext can not be null if there is more data available"); } + "Invalid argument : EnumerationContext cannot be null if there is more data available"); } this.enumResponse = new EnumerateResponse<T>(enumContext, (CloseableIterator<T>) iter, endOfSequence.booleanValue()); Index: EnumerateResponsePULL.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/wbem/EnumerateResponsePULL.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- EnumerateResponsePULL.java 26 Oct 2009 21:42:54 -0000 1.1.2.1 +++ EnumerateResponsePULL.java 19 Sep 2013 16:56:44 -0000 1.1.2.2 @@ -1,5 +1,5 @@ /** - * (C) Copyright IBM Corp. 2009 + * (C) Copyright IBM Corp. 2009, 2013 * * THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE * ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE @@ -13,6 +13,7 @@ * Flag Date Prog Description * --------------------------------------------------------------------------- * 2878054 2009-10-25 raman_arora Pull Enumeration Feature (PULL Parser) + * 2666 2013-09-19 blaschke-oss CR12: Remove ENUMERATIONCONTEXT */ package org.sblim.cimclient.internal.wbem; @@ -92,7 +93,7 @@ // EnumerationContext can't be null if there is more data available if ((endOfSequence.booleanValue() == false) && (enumContext == null)) { throw new IllegalArgumentException( - "Invalid argument : EnumerationContext can not be null if there is more data available"); } + "Invalid argument : EnumerationContext cannot be null if there is more data available"); } // create new closeableIterator as we cannot reuse 'iter' CloseableIterator<T> iterPull = (CloseableIterator<T>) new CloseableIteratorGeneric<T>(list Index: EnumerateResponseSAX.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/wbem/EnumerateResponseSAX.java,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- EnumerateResponseSAX.java 29 Jul 2010 18:44:25 -0000 1.1.2.4 +++ EnumerateResponseSAX.java 19 Sep 2013 16:56:44 -0000 1.1.2.5 @@ -1,5 +1,5 @@ /** - * (C) Copyright IBM Corp. 2009 + * (C) Copyright IBM Corp. 2009, 2013 * * THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE * ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE @@ -15,6 +15,7 @@ * 2845211 2009-08-27 raman_arora Pull Enumeration Feature (SAX Parser) * 2860081 2009-09-17 raman_arora Pull Enumeration Feature (DOM Parser) * 2878054 2009-10-25 raman_arora Pull Enumeration Feature (PULL Parser) + * 2666 2013-09-19 blaschke-oss CR12: Remove ENUMERATIONCONTEXT */ package org.sblim.cimclient.internal.wbem; @@ -100,7 +101,7 @@ // EnumerationContext can't be null if there is more data available if ((endOfSequence.booleanValue() == false) && (enumContext == null)) { throw new IllegalArgumentException( - "Invalid argument : EnumerationContext can not be null if there is more data available"); } + "Invalid argument : EnumerationContext cannot be null if there is more data available"); } this.enumResponse = new EnumerateResponse<T>(enumContext, (CloseableIterator<T>) iter, endOfSequence.booleanValue()); |