From 26d57bab7c06a317e147beb4d7b4d99ff76ffc38 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sun, 10 Apr 2016 15:53:57 +0200 Subject: [PATCH] added event for when a shop category has been added --- lib/jcoreee.jar | Bin 19091 -> 19091 bytes .../events/category/AddedCategoryEvent.java | 36 +++++++++ .../category/ShopCategoryAddedEvent.java | 69 ++++++++++++++++++ 3 files changed, 105 insertions(+) create mode 100644 src/org/mxchange/jshopcore/events/category/AddedCategoryEvent.java create mode 100644 src/org/mxchange/jshopcore/events/category/ShopCategoryAddedEvent.java diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index 3a32dfff27965a3b537e31aae5fea9bcc5de3288..ad61871dc3c447ae7b78f28e4fee6bf4892cb44f 100644 GIT binary patch delta 347 zcmbO{m2vV^MxFp~W)?061`Y-W=DLYInoLY}6U`TZ$eRiv@;69ivKpfyh>B#i0#Q>L ztwGc!Mh6hJg2`}lf->vmJ`a9wxLH8)A3*W>YV4EeFmXYY`GKe(Oim!mhS>v1ZEj<( zVF%GH+~yo0+E%!f2Sjg?pT`QKLsXr(LG%oRC@}wv={>OeE4FE@Ow2%IoGpRUlgpjK zF4^g90OGxd2&%a_f_RxOULb0#i#Ld3at#1c9Bwj`3tYi2$pA7hxSByk<3Ln~TM&ra s;}!v;#M~1=RE2vAh`Q&V1){t>8bQ=qk4z9{;aLu%HhN}*C^@fE09Z0(hX4Qo delta 347 zcmbO{m2vV^MxFp~W)?061`Y;>SveDVG?`}ROf+8rB5x{y$loB5$!d&-AS#m43Peq1 zv<6X^7#%>=3MRwJ3CgUK`#ku$;bsBFe*nejtFcd>!^8zq<_DsFFgbxJ8)gq6wYiPC zh8;w+aGP_0Xj|b@9uU1nejY1`4pDXD2GKJNqQLwwruV?=uh^!sGR*=S<7^3(o?Pw> zcF9g>0}$^uL{QDe5yZ=M@d8m>UA#dQlWPEo;&79hT;K|JNd}O4!PN{R8V8~>+=4*V t9=8Y(CFY(0qAJ`|K-4|=ED+`8(Fmf>dSrqq3(s;8wb3&hM9F!T0svKZd07Ae diff --git a/src/org/mxchange/jshopcore/events/category/AddedCategoryEvent.java b/src/org/mxchange/jshopcore/events/category/AddedCategoryEvent.java new file mode 100644 index 0000000..bdef944 --- /dev/null +++ b/src/org/mxchange/jshopcore/events/category/AddedCategoryEvent.java @@ -0,0 +1,36 @@ +/* + * Copyright (C) 2016 Roland Haeder + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ +package org.mxchange.jshopcore.events.category; + +import java.io.Serializable; +import org.mxchange.jshopcore.model.category.Category; + +/** + * An interface for added category events + *

+ * @author Roland Haeder + */ +public interface AddedCategoryEvent extends Serializable { + + /** + * Getter for added category instance + *

+ * @return Added category instance + */ + public Category getAddedCategory (); + +} diff --git a/src/org/mxchange/jshopcore/events/category/ShopCategoryAddedEvent.java b/src/org/mxchange/jshopcore/events/category/ShopCategoryAddedEvent.java new file mode 100644 index 0000000..59f279f --- /dev/null +++ b/src/org/mxchange/jshopcore/events/category/ShopCategoryAddedEvent.java @@ -0,0 +1,69 @@ +/* + * Copyright (C) 2016 Roland Haeder + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ +package org.mxchange.jshopcore.events.category; + +import java.text.MessageFormat; +import org.mxchange.jshopcore.model.category.Category; + +/** + * An event fired when a new shop category has been added. + *

+ * @author Roland Haeder + */ +public class ShopCategoryAddedEvent implements AddedCategoryEvent { + + /** + * Serial number + */ + private static final long serialVersionUID = 83_275_471_765_091_760L; + + /** + * Category instance that has been added + */ + private final Category addedCategory; + + /** + * Constructor with added category instance + *

+ * @param addedCategory Added category + */ + public ShopCategoryAddedEvent (final Category addedCategory) { + // The category should be valid + if (null == addedCategory) { + // Is NULL, throw NPE + throw new NullPointerException("addedCategory is null"); //NOI18N + } else if (addedCategory.getCategoryTitle().isEmpty()) { + // Empty title + throw new IllegalArgumentException("addedCategory.categoryTitle is empty"); //NOI18N + } else if (addedCategory.getCategoryId() == null) { + // Id is NULL + throw new NullPointerException("addedCategory.categoryId is null"); //NOI18N + } else if (addedCategory.getCategoryId() <= 0) { + // Not valid id + throw new IllegalArgumentException(MessageFormat.format("addedCategory.categoryId={0} is not valid.", addedCategory.getCategoryId())); //NOI18N + } + + // Set it here + this.addedCategory = addedCategory; + } + + @Override + public Category getAddedCategory () { + return this.addedCategory; + } + +} -- 2.39.5