summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/impl/SimpleRegisteredLuggage.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/uic/ticket/api/impl/SimpleRegisteredLuggage.java')
-rw-r--r--src/org/uic/ticket/api/impl/SimpleRegisteredLuggage.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/src/org/uic/ticket/api/impl/SimpleRegisteredLuggage.java b/src/org/uic/ticket/api/impl/SimpleRegisteredLuggage.java
deleted file mode 100644
index 801cd37..0000000
--- a/src/org/uic/ticket/api/impl/SimpleRegisteredLuggage.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- *
- */
-package org.uic.ticket.api.impl;
-
-import org.uic.ticket.api.spec.IRegisteredLuggage;
-
-// TODO: Auto-generated Javadoc
-/**
- * The Class SimpleRegisteredLuggage.
- */
-public class SimpleRegisteredLuggage implements IRegisteredLuggage{
-
- /** The registration id. */
- protected String registrationId;
-
- /** The max weight. */
- protected int maxWeight;
-
- /** The max size. */
- protected int maxSize;
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IRegisteredLuggage#getRegistrationId()
- */
- public String getRegistrationId() {
- return registrationId;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IRegisteredLuggage#setRegistrationId(java.lang.String)
- */
- public void setRegistrationId(String registrationId) {
- this.registrationId = registrationId;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IRegisteredLuggage#getMaxWeight()
- */
- public int getMaxWeight() {
- return maxWeight;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IRegisteredLuggage#setMaxWeight(int)
- */
- public void setMaxWeight(int maxWeight) {
- this.maxWeight = maxWeight;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IRegisteredLuggage#getMaxSize()
- */
- public int getMaxSize() {
- return maxSize;
- }
-
- /* (nicht-Javadoc)
- * @see org.uic.ticket.api.spec.IRegisteredLuggage#setMaxSize(int)
- */
- public void setMaxSize(int maxSize) {
- this.maxSize = maxSize;
- }
-
-
-
-}