net.smartcosmos.model.integration.INotificationEndpoint Maven / Gradle / Ivy
package net.smartcosmos.model.integration;
/*
* *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*
* SMART COSMOS Platform Core SDK
* ===============================================================================
* Copyright (C) 2013 - 2015 SMARTRAC Technology Fletcher, Inc.
* ===============================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#
*/
import net.smartcosmos.model.base.INamedObject;
import net.smartcosmos.model.base.IReferentialObject;
import net.smartcosmos.model.context.IAccount;
/**
* Defines a single external integration endpoint whereby the platform will issue an
* HTTP/S POST of events occurring within a given account context in near real-time.
*/
public interface INotificationEndpoint extends INamedObject, IReferentialObject
{
IAccount getAccount();
void setAccount(IAccount account);
IAccount getReferenceAccount();
void setReferenceAccount(IAccount account);
String getEncodedPublicKey();
String getEncodedPrivateKey();
String getTopicArn();
void setTopicArn(String topicArn);
String getSubscriptionArn();
void setSubscriptionArn(String subscriptionArn);
String getNotificationEndpointUrl();
void setNotificationEndpointUrl(String endpointUrl);
boolean isPendingConfirmation();
void setPendingConfirmation(boolean pendingConfirmation);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy