Skip to content

Commit 7268a86

Browse files
author
[a561842] hubert marteau
committed
Creation Object
1 parent 024a8cc commit 7268a86

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* Copyright (C) 2017 Worldline, Inc.
3+
*
4+
* MultiChainJavaAPI code distributed under the GPLv3 license, see COPYING file.
5+
* https://github.com/SimplyUb/MultiChainJavaAPI/blob/master/LICENSE
6+
*
7+
*/
8+
package multichain.object;
9+
10+
/**
11+
* @author Ub - H. MARTEAU
12+
* @version 4.14
13+
*/
14+
public class Create extends Stream {
15+
String type = null;
16+
17+
/**
18+
* @return the type
19+
*/
20+
public String getType() {
21+
return type;
22+
}
23+
24+
/**
25+
* @param type the type to set
26+
*/
27+
public void setType(String type) {
28+
this.type = type;
29+
}
30+
31+
32+
}

0 commit comments

Comments
 (0)