Examples of Advertisement


Examples of other.advertisement.Advertisement

        return checkPassed;
    }

    @Override
    protected void action() {
        Advertisement advertisement = this.object.getAdvertisementById(this.advertisementId);
        String answer = String.format("No advertisement with id=[%d]", this.advertisementId);

        if (advertisement != null) {
            answer = advertisement.toString();
        }

        this.object.getExtensionMessenger().sendPrivateMessage(this.receiver, answer);
    }
View Full Code Here

Examples of other.advertisement.Advertisement

    }

    @Override
    protected void action() {
        try {
            Advertisement ad = this.object.removeAdvertisement(this.advertisementId);

            this.object.getExtensionMessenger().sendPrivateMessage(this.receiver,
                    String.format("Advertisement has been removed successfully. Advertisement was: [%s]", ad));
        } catch (AdvertisementError e) {
            this.object.getExtensionMessenger().sendNotice(this.receiver, e.getMessage());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.