Sha256: e043573c66579fc1b65fd5e0d48d9bab8c35c1a950827f89223731b44d51f5d8
Contents?: true
Size: 1.18 KB
Versions: 2
Compression:
Stored size: 1.18 KB
Contents
/* **************************************************************************** * JavaDataSource.java * ****************************************************************************/ /* J_LZ_COPYRIGHT_BEGIN ******************************************************* * Copyright 2001-2009 Laszlo Systems, Inc. All Rights Reserved. * * Use is subject to license terms. * * J_LZ_COPYRIGHT_END *********************************************************/ package examples.javarpc.beans; /** * @author sebastianwagner * */ public class Organisation { private Long organisationId; private String name; /** * @return the organisationId */ public Long getOrganisationId() { return organisationId; } /** * @param organisationId the organisationId to set */ public void setOrganisationId(Long organisationId) { this.organisationId = organisationId; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } }
Version data entries
2 entries across 2 versions & 1 rubygems