From 54dd905fd4ce086432e8cc52f47821cfc20d6498 Mon Sep 17 00:00:00 2001 From: llorentelemmc Date: Wed, 28 Aug 2024 17:33:50 +0200 Subject: [PATCH] refactor: remove unused functionality --- .../usersettings/entity/MyAMWObject.java | 47 ------------------- 1 file changed, 47 deletions(-) delete mode 100644 AMW_business/src/main/java/ch/puzzle/itc/mobiliar/business/usersettings/entity/MyAMWObject.java diff --git a/AMW_business/src/main/java/ch/puzzle/itc/mobiliar/business/usersettings/entity/MyAMWObject.java b/AMW_business/src/main/java/ch/puzzle/itc/mobiliar/business/usersettings/entity/MyAMWObject.java deleted file mode 100644 index 3755670e2..000000000 --- a/AMW_business/src/main/java/ch/puzzle/itc/mobiliar/business/usersettings/entity/MyAMWObject.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * AMW - Automated Middleware allows you to manage the configurations of - * your Java EE applications on an unlimited number of different environments - * with various versions, including the automated deployment of those apps. - * Copyright (C) 2013-2016 by Puzzle ITC - * - * 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 ch.puzzle.itc.mobiliar.business.usersettings.entity; - -import lombok.Getter; -import lombok.Setter; -import ch.puzzle.itc.mobiliar.common.util.DefaultResourceTypeDefinition; - -public class MyAMWObject { - @Getter - private final Integer groupId; - @Getter - private final String name; - @Getter - @Setter - private boolean email; - @Getter - private final boolean asOrApp; - - - public MyAMWObject(Integer groupId, String name, boolean email, String resourceType) { - super(); - this.groupId = groupId; - this.name = name; - this.email = email; - this.asOrApp = resourceType!=null && (resourceType.equals(DefaultResourceTypeDefinition.APPLICATION.name()) || resourceType.equals(DefaultResourceTypeDefinition.APPLICATIONSERVER.name())); - } - -}