First part of onap rename
[appc.git] / appc-dispatcher / appc-workflow-management / appc-workflow-management-core / src / main / java / org / openecomp / appc / workflow / impl / WorkflowKey.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.workflow.impl;
26
27 class WorkflowKey {
28     private final String name;
29     private final String version;
30     private final String module;
31
32     WorkflowKey(String name, String version, String module) {
33         this.name = name;
34         this.version = version;
35         this.module = module;
36     }
37
38     String name() {
39         return name;
40     }
41
42     String version() {
43         return version;
44     }
45
46     String module() {
47         return module;
48     }
49
50     @Override
51     public String toString() {
52         StringBuilder buff = new StringBuilder(128);
53         buff.append("{");
54         buff.append("module = ").append(module);
55         buff.append(", ");
56         buff.append("name = ").append(name);
57         buff.append(", ");
58         buff.append("version = ").append(version);
59         buff.append("}");
60         return buff.toString();
61     }
62 }