summaryrefslogtreecommitdiffstats
path: root/proxy/code/src
diff options
context:
space:
mode:
authorMike McCune <mmccune@gibson.pdx.redhat.com>2009-07-29 12:32:11 -0700
committerMike McCune <mmccune@gibson.pdx.redhat.com>2009-07-29 12:32:11 -0700
commitbe6a8faf6b68a242d09d2043625858ba308930d3 (patch)
treebb946a840ed81bc89813fe4cc2ebc2ac2feacead /proxy/code/src
parente622b03677f493f70043e487b1530a04ee1c308d (diff)
removing uneeded object
Diffstat (limited to 'proxy/code/src')
-rw-r--r--proxy/code/src/org/fedoraproject/candlepin/model/Users.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/proxy/code/src/org/fedoraproject/candlepin/model/Users.java b/proxy/code/src/org/fedoraproject/candlepin/model/Users.java
deleted file mode 100644
index 119ca12..0000000
--- a/proxy/code/src/org/fedoraproject/candlepin/model/Users.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * Copyright (c) 2008 Red Hat, Inc.
- *
- * This software is licensed to you under the GNU General Public License,
- * version 2 (GPLv2). There is NO WARRANTY for this software, express or
- * implied, including the implied warranties of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
- * along with this software; if not, see
- * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
- *
- * Red Hat trademarks are not licensed under GPLv2. No permission is
- * granted to use or replicate Red Hat trademarks that are incorporated
- * in this software or its documentation.
- */
-package org.fedoraproject.candlepin.model;
-
-import java.util.List;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-
-
-/**
- * Users
- * @version $Rev$
- */
-@XmlRootElement
-@XmlAccessorType(XmlAccessType.PROPERTY)
-public class Users {
- @XmlElement(required = true)
- public List<User> userList;
-}