1b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov/**
211a89b445f3bde56bf07e6a0d04f0b0256dcb215Andrey Somov * Copyright (c) 2008, http://www.snakeyaml.org
3b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov *
4b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * Licensed under the Apache License, Version 2.0 (the "License");
5b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * you may not use this file except in compliance with the License.
6b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * You may obtain a copy of the License at
7b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov *
8b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov *     http://www.apache.org/licenses/LICENSE-2.0
9b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov *
10b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * Unless required by applicable law or agreed to in writing, software
11b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * distributed under the License is distributed on an "AS IS" BASIS,
12b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * See the License for the specific language governing permissions and
14b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov * limitations under the License.
15b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov */
16b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somovpackage org.yaml.snakeyaml;
17b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov
18b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somovpublic class BinaryBean {
19b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    byte[] data;
20b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    int id;
21b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov
22b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    public byte[] getData() {
23b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov        return data;
24b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    }
25b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov
26b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    public void setData(byte[] data) {
27b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov        this.data = data;
28b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    }
29b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov
30b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    public int getId() {
31b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov        return id;
32b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    }
33b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov
34b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    public void setId(int id) {
35b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov        this.id = id;
36b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov    }
37b5f4ec3dfb1a49968ebcc1243da10af9a2dc54a2Andrey Somov
389629be70863521bead138c295351f3dec926ab1Andrey Somov}