workaroud for snor issue
[vfc/nfvo/wfengine.git] / wso2 / rest-client / src / main / java / org / openo / baseservice / roa / util / ReaderHelper.java
1 /*
2  * Copyright 2016 Huawei Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openo.baseservice.roa.util;
17
18 import org.apache.commons.io.LineIterator;
19
20 import java.io.Reader;
21
22 /**
23  * Helper for read line.<br/>
24  * <p>
25  * </p>
26  * 
27  * @author
28  * @version   31-May-2016
29  */
30 public class ReaderHelper {
31
32     private LineIterator ite = null;
33
34     /**
35      * Constructor<br/>
36      * <p>
37      * </p>
38      * 
39      * @since  
40      * @param reader
41      */
42     public ReaderHelper(final Reader reader) {
43         if(reader != null) {
44             ite = new LineIterator(reader);
45         }
46
47     }
48
49     /**
50      * Gets the next line.<br/>
51      * 
52      * @return line if present else null.
53      * @since  
54      */
55     public String getLine() {
56         if(ite != null && ite.hasNext()) {
57             return ite.nextLine();
58         }
59         return null;
60     }
61 }