Changes for checkstyle 8.32
[policy/apex-pdp.git] / core / core-infrastructure / src / main / java / org / onap / policy / apex / core / infrastructure / java / compile / singleclass / SingleClassCompilationUnit.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.core.infrastructure.java.compile.singleclass;
22
23 import java.io.ByteArrayInputStream;
24 import java.io.InputStream;
25 import java.io.OutputStream;
26 import java.net.URI;
27 import javax.tools.SimpleJavaFileObject;
28
29 /**
30  * The Class SingleClassCompilationUnit is a container for the source code of the single Java class in memory. The class
31  * uses a {@link String} to hold the source code.
32  *
33  * @author Liam Fallon (liam.fallon@ericsson.com)
34  */
35 public class SingleClassCompilationUnit extends SimpleJavaFileObject {
36
37     private final String source;
38
39     /**
40      * Instantiates a new compilation unit.
41      *
42      * @param className the class name for the source code
43      * @param source the source code for the class
44      */
45     public SingleClassCompilationUnit(final String className, final String source) {
46         // Create a URI for the source code of the class
47         super(URI.create("file:///" + className + ".java"), Kind.SOURCE);
48         this.source = source;
49     }
50
51     /**
52      * {@inheritDoc}.
53      */
54     @Override
55     public CharSequence getCharContent(final boolean ignoreEncodingErrors) {
56         // Return the source code to toe caller, the compiler
57         return source;
58     }
59
60     /**
61      * {@inheritDoc}.
62      */
63     @Override
64     public OutputStream openOutputStream() {
65         throw new IllegalStateException();
66     }
67
68     /**
69      * {@inheritDoc}.
70      */
71     @Override
72     public InputStream openInputStream() {
73         // Return the source code as a stream
74         return new ByteArrayInputStream(source.getBytes());
75     }
76 }