123125bb1a6895c4596db7f434f5d20268f98f1f
[policy/apex-pdp.git] / model / basic-model / src / test / java / org / onap / policy / apex / model / basicmodel / handling / SupportApexModelCreator1.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.model.basicmodel.handling;
22
23 import java.util.UUID;
24
25 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
26 import org.onap.policy.apex.model.basicmodel.concepts.AxKeyInfo;
27 import org.onap.policy.apex.model.basicmodel.concepts.AxKeyInformation;
28 import org.onap.policy.apex.model.basicmodel.concepts.AxModel;
29 import org.onap.policy.apex.model.basicmodel.test.TestApexModelCreator;
30
31 public class SupportApexModelCreator1 implements TestApexModelCreator<AxModel> {
32
33     @Override
34     public AxModel getModel() {
35         return getInvalidModel();
36     }
37
38     @Override
39     public final AxModel getMalstructuredModel() {
40         return getInvalidModel();
41     }
42
43     @Override
44     public final AxModel getObservationModel() {
45         return getInvalidModel();
46     }
47
48     @Override
49     public final AxModel getWarningModel() {
50         return getInvalidModel();
51     }
52
53     @Override
54     public final AxModel getInvalidModel() {
55         AxModel basicModel = new AxModel();
56
57         basicModel.setKey(new AxArtifactKey("BasicModelKey", "0.0.1"));
58         basicModel.setKeyInformation(new AxKeyInformation(new AxArtifactKey("KeyInfoMapKey", "0.0.1")));
59
60         basicModel.getKeyInformation().getKeyInfoMap().put(basicModel.getKey(), new AxKeyInfo(basicModel.getKey(),
61                         UUID.fromString("00000000-0000-0000-0000-000000000000"),
62                         "nbasic model description\nThis is a multi line description\nwith another line of text."));
63         basicModel.getKeyInformation().getKeyInfoMap().put(basicModel.getKeyInformation().getKey(),
64                         new AxKeyInfo(basicModel.getKeyInformation().getKey(),
65                                         UUID.fromString("00000000-0000-0000-0000-000000000000"), ""));
66
67         return basicModel;
68     }
69 }