Tweak test script no issue #
[arvados.git] / src / main / java / org / arvados / client / api / model / argument / Argument.java
1 /*
2  * Copyright (C) The Arvados Authors. All rights reserved.
3  *
4  * SPDX-License-Identifier: AGPL-3.0 OR Apache-2.0
5  *
6  */
7
8 package org.arvados.client.api.model.argument;
9
10 import com.fasterxml.jackson.annotation.JsonIgnore;
11
12 public abstract class Argument {
13
14     @JsonIgnore
15     private String uuid;
16
17     public String getUuid() {
18         return this.uuid;
19     }
20
21     public void setUuid(String uuid) {
22         this.uuid = uuid;
23     }
24 }