bb4f2ac9bfde9c5aa7250331bf4b5b750359a803
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / main / java / org / openo / sfc / entity / Result.java
1 /**
2  * Copyright 2016 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openo.sfc.entity;
17
18 public class Result {
19     public String getId() {
20         return id;
21     }
22
23     public void setId(String id) {
24         this.id = id;
25     }
26
27     private String id;
28
29     public Result(String uuid) {
30         this.id = uuid;
31     }
32 }