caa58601d87236b7c87b163fae6a5e0c22f408ff
[aaf/authz.git] / auth / auth-gui / src / main / java / org / onap / aaf / auth / gui / Form.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.auth.gui;
23
24 import java.io.IOException;
25
26 import org.onap.aaf.misc.env.APIException;
27 import org.onap.aaf.misc.xgen.Cache;
28 import org.onap.aaf.misc.xgen.html.HTMLGen;
29
30 public class Form extends NamedCode {
31     private String preamble;
32     private NamedCode content;
33
34     public Form(boolean no_cache, NamedCode content) {
35         super(no_cache,content);
36         this.content = content;
37         preamble=null;
38     }
39
40     public Form preamble(String preamble) {
41         this.preamble = preamble;
42         return this;
43     }
44
45
46     @Override
47     public void code(final Cache<HTMLGen> cache, final HTMLGen hgen) throws APIException, IOException {
48         if (preamble!=null) {
49             hgen.incr("p","class=preamble").text(preamble).end();
50         }
51         hgen.incr("form","method=post");
52
53         content.code(cache, hgen);
54
55         hgen.tagOnly("input", "type=submit", "value=Submit")
56             .tagOnly("input", "type=reset", "value=Reset")
57         .end();
58     }
59
60     /* (non-Javadoc)
61      * @see org.onap.aaf.auth.gui.NamedCode#idattrs()
62      */
63     @Override
64     public String[] idattrs() {
65         return content.idattrs();
66     }
67
68 }