/* * Copyright 2014-2015 GameUp * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.gameup.android.test.entity; public class Stuff { private final String stuff1; private final long stuff2; public Stuff(final String stuff1, final long stuff2) { this.stuff1 = stuff1; this.stuff2 = stuff2; } public String getStuff1() { return stuff1; } public long getStuff2() { return stuff2; } @Override public String toString() { return "Stuff{" + "stuff1='" + stuff1 + '\'' + ", stuff2='" + stuff2 + '\'' + '}'; } }