Modify svnfm pom file for build docker
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / main / java / org / onap / vfc / nfvo / vnfm / svnfm / vnfmadapter / common / restclient / 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
17 package org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.restclient;
18
19 import java.io.Reader;
20
21 import org.apache.commons.io.LineIterator;
22
23 /**
24  * Helper for read line.<br/>
25  * <p>
26  * </p>
27  * 
28  * @author
29  * @version 31-May-2016
30  */
31 public class ReaderHelper {
32
33     private LineIterator ite = null;
34
35     /**
36      * Constructor<br/>
37      * <p>
38      * </p>
39      * 
40      * @since
41      * @param reader
42      */
43     public ReaderHelper(final Reader reader) {
44         if(reader != null) {
45             ite = new LineIterator(reader);
46         }
47
48     }
49
50     /**
51      * Gets the next line.<br/>
52      * 
53      * @return line if present else null.
54      * @since
55      */
56     public String getLine() {
57         if(ite != null && ite.hasNext()) {
58             return ite.nextLine();
59         }
60         return null;
61     }
62 }