/* * Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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. */ package com.amazonaws.services.pinpoint.model; import java.io.Serializable; /** * Campaign hook information. */ public class CampaignHook implements Serializable { /** * Lambda function name or arn to be called for delivery */ private String lambdaFunctionName; /** * What mode Lambda should be invoked in. *
* Constraints:
* Allowed Values: DELIVERY, FILTER
*/
private String mode;
/**
* Web URL to call for hook. If the URL has authentication specified it will
* be added as authentication to the request
*/
private String webUrl;
/**
* Lambda function name or arn to be called for delivery
*
* @return Lambda function name or arn to be called for delivery
*/
public String getLambdaFunctionName() {
return lambdaFunctionName;
}
/**
* Lambda function name or arn to be called for delivery
*
* @param lambdaFunctionName Lambda function name or arn to be called for
* delivery
*/
public void setLambdaFunctionName(String lambdaFunctionName) {
this.lambdaFunctionName = lambdaFunctionName;
}
/**
* Lambda function name or arn to be called for delivery
*
* Returns a reference to this object so that method calls can be chained * together. * * @param lambdaFunctionName Lambda function name or arn to be called for * delivery * @return A reference to this updated object so that method calls can be * chained together. */ public CampaignHook withLambdaFunctionName(String lambdaFunctionName) { this.lambdaFunctionName = lambdaFunctionName; return this; } /** * What mode Lambda should be invoked in. *
* Constraints:
* Allowed Values: DELIVERY, FILTER
*
* @return What mode Lambda should be invoked in.
* @see Mode
*/
public String getMode() {
return mode;
}
/**
* What mode Lambda should be invoked in.
*
* Constraints:
* Allowed Values: DELIVERY, FILTER
*
* @param mode What mode Lambda should be invoked in.
* @see Mode
*/
public void setMode(String mode) {
this.mode = mode;
}
/**
* What mode Lambda should be invoked in.
*
* Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: DELIVERY, FILTER
*
* @param mode What mode Lambda should be invoked in.
* @return A reference to this updated object so that method calls can be
* chained together.
* @see Mode
*/
public CampaignHook withMode(String mode) {
this.mode = mode;
return this;
}
/**
* What mode Lambda should be invoked in.
*
* Constraints:
* Allowed Values: DELIVERY, FILTER
*
* @param mode What mode Lambda should be invoked in.
* @see Mode
*/
public void setMode(Mode mode) {
this.mode = mode.toString();
}
/**
* What mode Lambda should be invoked in.
*
* Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: DELIVERY, FILTER
*
* @param mode What mode Lambda should be invoked in.
* @return A reference to this updated object so that method calls can be
* chained together.
* @see Mode
*/
public CampaignHook withMode(Mode mode) {
this.mode = mode.toString();
return this;
}
/**
* Web URL to call for hook. If the URL has authentication specified it will
* be added as authentication to the request
*
* @return Web URL to call for hook. If the URL has authentication specified
* it will be added as authentication to the request
*/
public String getWebUrl() {
return webUrl;
}
/**
* Web URL to call for hook. If the URL has authentication specified it will
* be added as authentication to the request
*
* @param webUrl Web URL to call for hook. If the URL has authentication
* specified it will be added as authentication to the request
*/
public void setWebUrl(String webUrl) {
this.webUrl = webUrl;
}
/**
* Web URL to call for hook. If the URL has authentication specified it will
* be added as authentication to the request
*
* Returns a reference to this object so that method calls can be chained * together. * * @param webUrl Web URL to call for hook. If the URL has authentication * specified it will be added as authentication to the request * @return A reference to this updated object so that method calls can be * chained together. */ public CampaignHook withWebUrl(String webUrl) { this.webUrl = webUrl; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getLambdaFunctionName() != null) sb.append("LambdaFunctionName: " + getLambdaFunctionName() + ","); if (getMode() != null) sb.append("Mode: " + getMode() + ","); if (getWebUrl() != null) sb.append("WebUrl: " + getWebUrl()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getLambdaFunctionName() == null) ? 0 : getLambdaFunctionName().hashCode()); hashCode = prime * hashCode + ((getMode() == null) ? 0 : getMode().hashCode()); hashCode = prime * hashCode + ((getWebUrl() == null) ? 0 : getWebUrl().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CampaignHook == false) return false; CampaignHook other = (CampaignHook) obj; if (other.getLambdaFunctionName() == null ^ this.getLambdaFunctionName() == null) return false; if (other.getLambdaFunctionName() != null && other.getLambdaFunctionName().equals(this.getLambdaFunctionName()) == false) return false; if (other.getMode() == null ^ this.getMode() == null) return false; if (other.getMode() != null && other.getMode().equals(this.getMode()) == false) return false; if (other.getWebUrl() == null ^ this.getWebUrl() == null) return false; if (other.getWebUrl() != null && other.getWebUrl().equals(this.getWebUrl()) == false) return false; return true; } }