Initial commit with all the necessary files
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / serialization / queryformats / FormatFactory.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.openecomp.aai
4  * ================================================================================
5  * Copyright (C) 2017 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 package org.openecomp.aai.serialization.queryformats;
22
23 import org.openecomp.aai.exceptions.AAIException;
24 import org.openecomp.aai.introspection.Loader;
25 import org.openecomp.aai.serialization.db.DBSerializer;
26 import org.openecomp.aai.serialization.queryformats.utils.UrlBuilder;
27
28 public class FormatFactory {
29
30         private final Loader loader;
31         private final DBSerializer serializer;
32         private final UrlBuilder urlBuilder;
33         public FormatFactory (Loader loader, DBSerializer serializer) throws AAIException {
34                 this.loader = loader;
35                 this.serializer = serializer;
36                 this.urlBuilder = new UrlBuilder(loader.getVersion(), serializer);
37         }
38         
39         public Formatter get(Format format) throws AAIException {
40                 
41                 Formatter formattter = null;
42
43                 switch (format) {
44                         case graphson :
45                                 formattter = new Formatter(new GraphSON());
46                                 break;
47                         case pathed :
48                                 formattter = new Formatter(new PathedURL(loader, urlBuilder));
49                                 break;
50                         case id :
51                                 formattter = new Formatter(new IdURL(loader, urlBuilder));
52                                 break;
53                         case resource :
54                                 formattter = new Formatter(new Resource.Builder(loader, serializer, urlBuilder).build());
55                                 break;
56                         case resource_and_url :
57                                 formattter = new Formatter(new Resource.Builder(loader, serializer, urlBuilder).includeUrl().build());
58                                 break;
59                         case simple :
60                                 formattter = new Formatter(new SimpleFormat(urlBuilder));
61                                 break;
62                         case console :
63                                 formattter = new Formatter(new Console());
64                                 break;
65                         default :
66                                 break;
67                 }
68                 
69                 return formattter;
70         }
71         
72 }