IGNITE-3417: Cassandra packages have no descriptions
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/b2fd2aa6 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/b2fd2aa6 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/b2fd2aa6 Branch: refs/heads/ignite-1232 Commit: b2fd2aa6d7a74e63ea5957408192112e539cf6a7 Parents: d27e735 Author: Igor Rudyak <[email protected]> Authored: Wed Jul 6 19:37:36 2016 +0300 Committer: Denis Magda <[email protected]> Committed: Wed Jul 6 19:37:36 2016 +0300 ---------------------------------------------------------------------- .../store/cassandra/common/package-info.java | 21 ++++++++++++++++++++ .../cassandra/datasource/package-info.java | 21 ++++++++++++++++++++ .../cache/store/cassandra/package-info.java | 21 ++++++++++++++++++++ .../cassandra/persistence/package-info.java | 21 ++++++++++++++++++++ .../cassandra/serializer/package-info.java | 21 ++++++++++++++++++++ .../store/cassandra/session/package-info.java | 21 ++++++++++++++++++++ .../cassandra/session/pool/package-info.java | 21 ++++++++++++++++++++ .../store/cassandra/utils/package-info.java | 21 ++++++++++++++++++++ .../tests/load/cassandra/package-info.java | 21 ++++++++++++++++++++ .../ignite/tests/load/ignite/package-info.java | 21 ++++++++++++++++++++ .../apache/ignite/tests/load/package-info.java | 21 ++++++++++++++++++++ .../org/apache/ignite/tests/package-info.java | 21 ++++++++++++++++++++ .../apache/ignite/tests/pojos/package-info.java | 21 ++++++++++++++++++++ .../apache/ignite/tests/utils/package-info.java | 21 ++++++++++++++++++++ 14 files changed, 294 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/common/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/common/package-info.java b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/common/package-info.java new file mode 100644 index 0000000..c4f5d3b --- /dev/null +++ b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/common/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains commonly used helper classes + */ +package org.apache.ignite.cache.store.cassandra.common; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/datasource/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/datasource/package-info.java b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/datasource/package-info.java new file mode 100644 index 0000000..d5003ae --- /dev/null +++ b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/datasource/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains data source implementation + */ +package org.apache.ignite.cache.store.cassandra.datasource; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/package-info.java b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/package-info.java new file mode 100644 index 0000000..46f5635 --- /dev/null +++ b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains {@link org.apache.ignite.cache.store.CacheStore} implementation backed by Cassandra database + */ +package org.apache.ignite.cache.store.cassandra; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/persistence/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/persistence/package-info.java b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/persistence/package-info.java new file mode 100644 index 0000000..76d32fb --- /dev/null +++ b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/persistence/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains persistent settings configuration + */ +package org.apache.ignite.cache.store.cassandra.persistence; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/serializer/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/serializer/package-info.java b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/serializer/package-info.java new file mode 100644 index 0000000..4edd759 --- /dev/null +++ b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/serializer/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains serializers implementation, to store BLOBs into Cassandra + */ +package org.apache.ignite.cache.store.cassandra.serializer; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/session/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/session/package-info.java b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/session/package-info.java new file mode 100644 index 0000000..ecbbe78 --- /dev/null +++ b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/session/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains classes responsible for handling sessions and communication with Cassandra + */ +package org.apache.ignite.cache.store.cassandra.session; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/session/pool/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/session/pool/package-info.java b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/session/pool/package-info.java new file mode 100644 index 0000000..21c292f --- /dev/null +++ b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/session/pool/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains session pool implenetation for Cassandra sessions + */ +package org.apache.ignite.cache.store.cassandra.session.pool; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/utils/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/utils/package-info.java b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/utils/package-info.java new file mode 100644 index 0000000..2460dfe --- /dev/null +++ b/modules/cassandra/src/main/java/org/apache/ignite/cache/store/cassandra/utils/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains utility classes + */ +package org.apache.ignite.cache.store.cassandra.utils; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/test/java/org/apache/ignite/tests/load/cassandra/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/test/java/org/apache/ignite/tests/load/cassandra/package-info.java b/modules/cassandra/src/test/java/org/apache/ignite/tests/load/cassandra/package-info.java new file mode 100644 index 0000000..bcf66b6 --- /dev/null +++ b/modules/cassandra/src/test/java/org/apache/ignite/tests/load/cassandra/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains load tests workers implementation for Cassandra cluster + */ +package org.apache.ignite.tests.load.cassandra; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/test/java/org/apache/ignite/tests/load/ignite/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/test/java/org/apache/ignite/tests/load/ignite/package-info.java b/modules/cassandra/src/test/java/org/apache/ignite/tests/load/ignite/package-info.java new file mode 100644 index 0000000..af1d098 --- /dev/null +++ b/modules/cassandra/src/test/java/org/apache/ignite/tests/load/ignite/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains load tests workers implementation for Ignite-Cassandra cluster + */ +package org.apache.ignite.tests.load.ignite; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/test/java/org/apache/ignite/tests/load/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/test/java/org/apache/ignite/tests/load/package-info.java b/modules/cassandra/src/test/java/org/apache/ignite/tests/load/package-info.java new file mode 100644 index 0000000..55b7344 --- /dev/null +++ b/modules/cassandra/src/test/java/org/apache/ignite/tests/load/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains load tests classes + */ +package org.apache.ignite.tests.load; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/test/java/org/apache/ignite/tests/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/test/java/org/apache/ignite/tests/package-info.java b/modules/cassandra/src/test/java/org/apache/ignite/tests/package-info.java new file mode 100644 index 0000000..2d627f1 --- /dev/null +++ b/modules/cassandra/src/test/java/org/apache/ignite/tests/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains unit tests + */ +package org.apache.ignite.tests; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/test/java/org/apache/ignite/tests/pojos/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/test/java/org/apache/ignite/tests/pojos/package-info.java b/modules/cassandra/src/test/java/org/apache/ignite/tests/pojos/package-info.java new file mode 100644 index 0000000..fb166b5 --- /dev/null +++ b/modules/cassandra/src/test/java/org/apache/ignite/tests/pojos/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains sample POJO objects used in unit tests + */ +package org.apache.ignite.tests.pojos; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/b2fd2aa6/modules/cassandra/src/test/java/org/apache/ignite/tests/utils/package-info.java ---------------------------------------------------------------------- diff --git a/modules/cassandra/src/test/java/org/apache/ignite/tests/utils/package-info.java b/modules/cassandra/src/test/java/org/apache/ignite/tests/utils/package-info.java new file mode 100644 index 0000000..4734e4a --- /dev/null +++ b/modules/cassandra/src/test/java/org/apache/ignite/tests/utils/package-info.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ + +/** + * Contains utility classes for unit tests + */ +package org.apache.ignite.tests.utils; \ No newline at end of file
