Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .gen/com/uber/cadence/entities/AccessDeniedError.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
/**
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* <p>Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* <p>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
*
* <p>http://aws.amazon.com/apache2.0
*
* <p>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.uber.cadence.entities;

import java.util.*;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;

/**
* DO NOT EDIT THIS FILE.
*
* <p>This file is generated by cadence-idl custom generator for simple java entity
*
* <p>If you want to change the code, please modify the generator.
* https://github.com/cadence-workflow/cadence-idl/tree/main/java/thrift/generator
*/
@Getter
@Setter
@Accessors(chain = true)
public class AccessDeniedError extends BaseError {

public AccessDeniedError() {
super();
}

public AccessDeniedError(String message, Throwable cause) {
super(message, cause);
}

public AccessDeniedError(Throwable cause) {
super(cause);
}
}
37 changes: 37 additions & 0 deletions .gen/com/uber/cadence/entities/ActivityLocalDispatchInfo.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* <p>Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* <p>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
*
* <p>http://aws.amazon.com/apache2.0
*
* <p>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.uber.cadence.entities;

import java.util.*;
import lombok.Data;
import lombok.experimental.Accessors;

/**
* DO NOT EDIT THIS FILE.
*
* <p>This file is generated by cadence-idl custom generator for simple java entity
*
* <p>If you want to change the code, please modify the generator.
* https://github.com/cadence-workflow/cadence-idl/tree/main/java/thrift/generator
*/
@Data
@Accessors(chain = true)
public class ActivityLocalDispatchInfo {
private String activityId;
private long scheduledTimestamp;
private long startedTimestamp;
private long scheduledTimestampOfThisAttempt;
private byte[] taskToken;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/**
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* <p>Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* <p>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
*
* <p>http://aws.amazon.com/apache2.0
*
* <p>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.uber.cadence.entities;

import java.util.*;
import lombok.Data;
import lombok.experimental.Accessors;

/**
* DO NOT EDIT THIS FILE.
*
* <p>This file is generated by cadence-idl custom generator for simple java entity
*
* <p>If you want to change the code, please modify the generator.
* https://github.com/cadence-workflow/cadence-idl/tree/main/java/thrift/generator
*/
@Data
@Accessors(chain = true)
public class ActivityTaskCancelRequestedEventAttributes {
private String activityId;
private long decisionTaskCompletedEventId;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* <p>Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* <p>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
*
* <p>http://aws.amazon.com/apache2.0
*
* <p>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.uber.cadence.entities;

import java.util.*;
import lombok.Data;
import lombok.experimental.Accessors;

/**
* DO NOT EDIT THIS FILE.
*
* <p>This file is generated by cadence-idl custom generator for simple java entity
*
* <p>If you want to change the code, please modify the generator.
* https://github.com/cadence-workflow/cadence-idl/tree/main/java/thrift/generator
*/
@Data
@Accessors(chain = true)
public class ActivityTaskCanceledEventAttributes {
private byte[] details;
private long latestCancelRequestedEventId;
private long scheduledEventId;
private long startedEventId;
private String identity;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/**
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* <p>Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* <p>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
*
* <p>http://aws.amazon.com/apache2.0
*
* <p>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.uber.cadence.entities;

import java.util.*;
import lombok.Data;
import lombok.experimental.Accessors;

/**
* DO NOT EDIT THIS FILE.
*
* <p>This file is generated by cadence-idl custom generator for simple java entity
*
* <p>If you want to change the code, please modify the generator.
* https://github.com/cadence-workflow/cadence-idl/tree/main/java/thrift/generator
*/
@Data
@Accessors(chain = true)
public class ActivityTaskCompletedEventAttributes {
private byte[] result;
private long scheduledEventId;
private long startedEventId;
private String identity;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* <p>Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* <p>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
*
* <p>http://aws.amazon.com/apache2.0
*
* <p>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.uber.cadence.entities;

import java.util.*;
import lombok.Data;
import lombok.experimental.Accessors;

/**
* DO NOT EDIT THIS FILE.
*
* <p>This file is generated by cadence-idl custom generator for simple java entity
*
* <p>If you want to change the code, please modify the generator.
* https://github.com/cadence-workflow/cadence-idl/tree/main/java/thrift/generator
*/
@Data
@Accessors(chain = true)
public class ActivityTaskFailedEventAttributes {
private String reason;
private byte[] details;
private long scheduledEventId;
private long startedEventId;
private String identity;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* <p>Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* <p>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
*
* <p>http://aws.amazon.com/apache2.0
*
* <p>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.uber.cadence.entities;

import java.util.*;
import lombok.Data;
import lombok.experimental.Accessors;

/**
* DO NOT EDIT THIS FILE.
*
* <p>This file is generated by cadence-idl custom generator for simple java entity
*
* <p>If you want to change the code, please modify the generator.
* https://github.com/cadence-workflow/cadence-idl/tree/main/java/thrift/generator
*/
@Data
@Accessors(chain = true)
public class ActivityTaskScheduledEventAttributes {
private String activityId;
private ActivityType activityType;
private String domain;
private TaskList taskList;
private byte[] input;
private int scheduleToCloseTimeoutSeconds;
private int scheduleToStartTimeoutSeconds;
private int startToCloseTimeoutSeconds;
private int heartbeatTimeoutSeconds;
private long decisionTaskCompletedEventId;
private RetryPolicy retryPolicy;
private Header header;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/**
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* <p>Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* <p>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
*
* <p>http://aws.amazon.com/apache2.0
*
* <p>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.uber.cadence.entities;

import java.util.*;
import lombok.Data;
import lombok.experimental.Accessors;

/**
* DO NOT EDIT THIS FILE.
*
* <p>This file is generated by cadence-idl custom generator for simple java entity
*
* <p>If you want to change the code, please modify the generator.
* https://github.com/cadence-workflow/cadence-idl/tree/main/java/thrift/generator
*/
@Data
@Accessors(chain = true)
public class ActivityTaskStartedEventAttributes {
private long scheduledEventId;
private String identity;
private String requestId;
private int attempt;
private String lastFailureReason;
private byte[] lastFailureDetails;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/**
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* <p>Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* <p>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
*
* <p>http://aws.amazon.com/apache2.0
*
* <p>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.uber.cadence.entities;

import java.util.*;
import lombok.Data;
import lombok.experimental.Accessors;

/**
* DO NOT EDIT THIS FILE.
*
* <p>This file is generated by cadence-idl custom generator for simple java entity
*
* <p>If you want to change the code, please modify the generator.
* https://github.com/cadence-workflow/cadence-idl/tree/main/java/thrift/generator
*/
@Data
@Accessors(chain = true)
public class ActivityTaskTimedOutEventAttributes {
private byte[] details;
private long scheduledEventId;
private long startedEventId;
private TimeoutType timeoutType;
private String lastFailureReason;
private byte[] lastFailureDetails;
}
33 changes: 33 additions & 0 deletions .gen/com/uber/cadence/entities/ActivityType.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/**
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* <p>Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* <p>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
*
* <p>http://aws.amazon.com/apache2.0
*
* <p>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.uber.cadence.entities;

import java.util.*;
import lombok.Data;
import lombok.experimental.Accessors;

/**
* DO NOT EDIT THIS FILE.
*
* <p>This file is generated by cadence-idl custom generator for simple java entity
*
* <p>If you want to change the code, please modify the generator.
* https://github.com/cadence-workflow/cadence-idl/tree/main/java/thrift/generator
*/
@Data
@Accessors(chain = true)
public class ActivityType {
private String name;
}
Loading