/* * Copyright 2001-2008 Geert Bevin <gbevin[remove] at uwyn dot com> * Licensed under the Apache License, Version 2.0 (the "License") * $Id: RegularPojo.java 3918 2008-04-14 17:35:35Z gbevin $ */ package com.uwyn.rife.cmf.dam; public class RegularPojo { private int mId = -1; private String mName = null; public RegularPojo() { } public void setId(int id) { mId = id; } public int getId() { return mId; } public void setName(String name) { mName = name; } public String getName() { return mName; } public RegularPojo name(String name) { mName = name; return this; } }